The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi folks,
I've got a basic Date table with a DIMDate[Date] primary key.
I'm trying to create a boolean calculated column that determines if the [Date] is part of a completed school year. New school years start at the Month of September. Here's what I've tried with no luck:
School Year Completed =
VAR YearCheck = YEAR(DIMDate[Date]) <= YEAR(Today())
VAR MonthCheck = MONTH(DIMDate[Date]) < 9
VAR Result = YearCheck && MonthCheck
RETURN Result
My table has data from January 1, 2015 through December 31, 2022. I expect the DAX to return TRUE for all dates up to August 31, 2022, and FALSE thereafter. But not working. It is ignoring my YearCheck condition, and returning FALSE in any year so long as month greater than or equal to 9
Solved! Go to Solution.
aha, try this
try this,
Still no luck:
aha, try this
Boom! The converse logic works! Thanks much.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
20 | |
18 | |
18 | |
15 | |
13 |
User | Count |
---|---|
38 | |
32 | |
22 | |
19 | |
18 |