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 Team ,
I'd like to show No Value to the second chart if i don't filter on anything , mean the second chart can be showed the value if we click or filter on anything. How to acheive this ?
Solved! Go to Solution.
It seems there is no better way to achieve that.I would suggest you add a year slicer.Then create the measure like:
Measure = IF(ISFILTERED(Table1[Year]),SUM(Table1[values]),BLANK())
Regards,
Cherie
It seems there is no better way to achieve that.I would suggest you add a year slicer.Then create the measure like:
Measure = IF(ISFILTERED(Table1[Year]),SUM(Table1[values]),BLANK())
Regards,
Cherie
hi , it works well . you're awesome. thx