The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a date table and would like to have a "Y"/"N" column in there that indicates if the DATE was within the last 3 calendar months, starting from the 1st of the month.
For example, where today is October 13, I would like every day from July 1st to today to have a "Y" with every other date being a "N".
Can someone please advise?
Thank you
Solved! Go to Solution.
@JamieH Try:
Column =
VAR __Today = TODAY()
VAR __ThreeMonthsAgo = EOMONTH(__Today,-3)
VAR __ThreeMonthsAgoStart = DATE(YEAR(__ThreeMonthsAgo),MONTH(__ThreeMonthsAgo),1)
RETURN
IF([Date] >= __ThreeMonthsAgoStart,"Y","N")
@JamieH Try:
Column =
VAR __Today = TODAY()
VAR __ThreeMonthsAgo = EOMONTH(__Today,-3)
VAR __ThreeMonthsAgoStart = DATE(YEAR(__ThreeMonthsAgo),MONTH(__ThreeMonthsAgo),1)
RETURN
IF([Date] >= __ThreeMonthsAgoStart,"Y","N")
Thats great. Thanks Greg
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
27 | |
12 | |
12 | |
12 | |
6 |