Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Community..!!
Below is my measure,
The problem here is , Jan'25 month is not present in my dataset then how it is displaying?
and i want the output as "-" if the month is not available in the dataset.
How do we do this by using DAX?
Solved! Go to Solution.
Thanks for the suggestion.
But I got the output and below is the solution,
@Anonymous EOMONTH is a non-time intelligence function and thus does not require a date table to be able to calculate dates. It's internally wired into the function. What you can do is add a check on your date table or other table to see if the date is present and if not, just return "-". Like:
VAR isPresent = COUNTROWS(FILTER('Automated Spend', [Month-Year] = futureSixMonths))
If that is blank, then the date is not present.
Thanks for the suggestion.
But I got the output and below is the solution,
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |