Forum Discussion
nlakshmi
3 years agoFrequent Visitor
Conditional measure using a measure
Hello, I need help to create a conditional measure from Quality OK column. The Quality OK column, the below table is a conditional measure based on a status column in the table - created as CALCU...
- Anonymous3 years ago
Hi nlakshmi,
AFIAK, current power bi does not support one field return multiple data types, you need to convert these values to text to use these different data type value at the same time.
You can try to use the following measure formula if suitable for your requirements:formula = IF ( [Quality OK] <> BLANK (), MAX ( Table[Max Date] ), BLANK () )Regards,
Xiaoxin Sheng
nlakshmi
3 years agoFrequent Visitor
Thank you very much for the resolution