Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have the following measure
LastReviewDate =
if(isblank(max(FactPerformanceRating[ReviewDate])),
"No Review Yet",
max(FactPerformanceRating[ReviewDate])
)
ReviewDate is all date format.
When use this DAX, the card vis just show up as #,0.00, and it is not possible to format this measure as date.
how can I change my DAX so that I can use string text inside the IF statement?
source, from DataCamp course case study: HR analystics in Power BI > 9.2 Analysing demographics
Solved! Go to Solution.
I think card visual only takes the output of the same data type. So for example, in your original formula, the data type can be either date format or string format.
If you tweak your formula like below, it will produce your required output.
I also attach the pbix file for your reference.
Best regards,
oh yes you are night.
The instruction did ask us to format it, but not in the code, but in the ribbon.
I think card visual only takes the output of the same data type. So for example, in your original formula, the data type can be either date format or string format.
If you tweak your formula like below, it will produce your required output.
I also attach the pbix file for your reference.
Best regards,
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 35 | |
| 31 | |
| 19 | |
| 13 | |
| 10 |