Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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]&"")