function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Akshay MenseAkshay Mense 

how to get record type name in a flow condition?

Hello, I have a requirement where i would like to add a condition to make field visible or not based on its record type name in flow. How it can be achieved. Currenntly in system we have created a resource which fetches the choices for record types how can i use it in condition.  Is there better way to achieve the same using other method. Currently this condition is not working

User-added image
Vishwajeet kumarVishwajeet kumar
Hello,
You should be able to do query on object - "RecordType" based on recordTypeId or any other fields using "Get records" element in flow and this variable can be used in comparison.

Thanks