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 August 31st. Request your voucher.
How to get "Blank" when nothing is selected on slicer in the below given case :
Finsihin Date = IF(CALCULATE(VALUES(Data[Finish Date])) = Blank (), "Worknig", FORMAT(VALUES(Data[Finish Date]), "D/MMMM"))
pls try this
this is all just an example
IF( not ISFILTERED(VALUES(Data[Finish Date]) ,"Blank",FORMAT(VALUES(Data[Finish Date]), "D/MMMM")))
thanks but not working
@devsharma6830
slicer values always come from a field but not from a measure!
Hence try using SELECTEDVALUE Function.
Proud to be a Super User!
I tried but not appropriate result