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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Solved! Go to Solution.
can u share sample data with expected output?
Create below measure
Measure=Sumx(Table,IF(Table[Status] in {''pending'', "assigned", "fixed"} && Table[Resolve Date]=Today(),1,0))
Add above measure in visual level filter ans set measure is not 0.
If it resolve your problem mark it as solution.
Thanks,
Pravin
Please check your data if you see only 2 records have resoleve date= today() but their status is different than you r requiremn. hence it is producing 0 in measure.
If u want to create new table then go to modelling tab. click on new table and use calculateTable function and add filter in it with your requirement.
so is it not showing with required status and resolvedDate as today?