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 have a custom table that builds date slicer options for four periods (Year to date, Quarter to date, Month to date, Last 30 days). The DAX below has been running fine but today it failed. The month to date is the one causing it to fail. Today is the first day of the month and I have no data yet and am getting the following error "The start date or end date in Calendar function can not be Blank value.".
I would like to prevent this error by checking if no records exist then hide the Month to date slicer option. How would I do this with the DAX below?
calendar_mtd_qtd_ytd =
VAR TodayDate = TODAY()
VAR YearStart = CALCULATE(STARTOFYEAR(xxx[Created Date]), YEAR(xxx[Created Date]) = YEAR(TodayDate))
VAR QuarterStart = CALCULATE(STARTOFQUARTER(xxx[Created Date]), YEAR(xxx[Created Date]) = YEAR(TodayDate), QUARTER(xxx[Created Date]) = QUARTER(TodayDate))
VAR MonthStart = CALCULATE(STARTOFMONTH(xxx[Created Date]), YEAR(xxx[Created Date]) = YEAR(TodayDate), MONTH(xxx[Created Date]) = Month(TodayDate))
VAR Result =
UNION (
ADDCOLUMNS (
CALENDAR(YearStart, TodayDate),
"Selection", "YTD"
),
ADDCOLUMNS (
CALENDAR(QuarterStart, TodayDate),
"Selection", "QTD"
),
ADDCOLUMNS (
CALENDAR(MonthStart, TodayDate),
"Selection", "MTD"
),
ADDCOLUMNS (
CALENDAR(TODAY()-31, TodayDate-1),
"Selection", "Last 30 Days"
)
)
RETURN
Result
Please provide sanitized sample data that fully covers your issue.
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Can you provide an example?
Hi @ewkcoder ,
Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.
Best Regards
Hi @ewkcoder ,
Could you please show some sample data in the table xxxx[Created Date]? I just used the same formula with yours to create a calendar table, it works...
Best Regards
You need to branch out your VAR Result = line into two different UNION statements. one with and one without the MTD choices.
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 | |
60 | |
51 | |
36 | |
35 |
User | Count |
---|---|
84 | |
71 | |
56 | |
45 | |
43 |