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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi All,
I have query on date field , where i am getting some blanks and want to replace it with "-" or NA.
IF (
SELECTEDVALUE ( table[template] ) = "AC Template1",
"Not Applicable",
CALCULATE (
SELECTEDVALUE ( table[actualdate] ),
Reporting_dates[data_tranS] = "Imple Release"
|| Reporting_dates[data_transfer] = "Q1",
GROUPBY ( Report_Project, Report_Project[pro_name] )
In the above measure, i am gettng blanks values and want to replace whereever the blanks with "-"
Please suggest.
Regards,
Rajendra
Proud to be a Super User! | |
let's say your measure, which was written above is called [Date my] then you need to write like this:
IF(ISBLANK([Date my]),"-",[Date my]&"")