The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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]&"")
User | Count |
---|---|
64 | |
55 | |
54 | |
51 | |
31 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
43 |