Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Want to create one conditional column.
Condition is when INCI Name is blank then Value from description should be displayed.
Solved! Go to Solution.
@kulkarnipriya87 Firstly, Ensure that both 'INCI Name' and 'Description' have compatible data types. For example, they should both be of type text or similar. Verify that there are actual blank values in the 'INCI Name' column. Sometimes, what appears to be blank might actually be a whitespace or non-breaking space.
Your DAX expression looks fine but if it's still not working, try this:
Blank INCI = IF('Item'[INCI Name] = BLANK(), 'Item'[Description], 'Item'[INCI Name])
Let me know if it works for you.
If you find this insightful, please provide a Kudo and accept this as a solution.
@kulkarnipriya87 Firstly, Ensure that both 'INCI Name' and 'Description' have compatible data types. For example, they should both be of type text or similar. Verify that there are actual blank values in the 'INCI Name' column. Sometimes, what appears to be blank might actually be a whitespace or non-breaking space.
Your DAX expression looks fine but if it's still not working, try this:
Blank INCI = IF('Item'[INCI Name] = BLANK(), 'Item'[Description], 'Item'[INCI Name])
Let me know if it works for you.
If you find this insightful, please provide a Kudo and accept this as a solution.
Thanks, It works.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.