Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I created a measure to replace blanks with '0' in a table, but now I have an issue where the function has inserted zeros for the rest of 2022 year. I'd like to constrain this date up to the current month only. I would appreciate some advice on how to solve this.
Solved! Go to Solution.
Hi, @Anonymous ;
Your parentheses are not in the right place. You are missing ") "where I made up the notes.
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous;
Hi, @Anonymous;
Hi, @Anonymous ;
Your parentheses are not in the right place. You are missing ") "where I made up the notes.
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous ;
You could modify measure as follow:
COALESCE =
IF(MAX('Table'[Date].[Date])<=EOMONTH( MAXX(ALL('Table'),[Date]),0),COALESCE(COUNT('Table'[Date]),0))
The final output is shown below:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@v-yalanwu-msft Thanks. I've tried that, but now I have this error. I've checked the syntax but I don't know what's wrong.
Hi @Anonymous
Try this:
Var _A = calculate(COUNT(Incident[Date]),filter(Incident,Incident[Date]<=today()))
return
Measure = IF(isblank(_A),0,_A)
Or set a filter on the filter pane to show filter before today.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @Anonymous
Not sure why my formula changed :-D, Try this:
Measure =
Var _A = calculate(COUNT(Incident[Date]),filter(Incident,Incident[Date]<=today()))
return
IF(isblank(_A),0,_A)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
68 | |
57 | |
52 | |
36 | |
34 |
User | Count |
---|---|
84 | |
71 | |
56 | |
45 | |
43 |