Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi All
I try to set chart with filter for field = Show_3_YR = 1 for PBI file name =PBI_V18

After that i create a bookmark , and save bookmark at button. and it work fine.
The issue happen when i try to save file as PBI_BACKUP
And i notice that filter for field = SHOW_3_YR , no more working. so the chart display wrong value.
Can some one advise me where go wrong ?
Paul
Solved! Go to Solution.
You will need to change the column name to INVC[Last Sales].I have edited my reply to reflect the same.
Hi @admin11 ,
Can you trying creating the measure like:
difference =
IF (
DATEDIFF ( NOT ( ISBLANK ( <YourColumnname> ) ), TODAY (), DAY ) > 3 * 365,
1,
0
)
See if it works
Hi PC2790
i get error below :-

You will need to change the column name to INVC[Last Sales].I have edited my reply to reflect the same.