Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
Hi,
I have included a picture of the table below that I'm working with. Essentialy what I want is a Column that says "TRUE" when it is the previous month dynamically and "FALSE" when it isnt. I can do this through Power Query M, but. for my specific case when the month is January as it is now I want the previous month to be "TRUE" for December. Ignore the date column itself as that doesnt actually matter in this case.Would anyone know how to achieve this dynmaically through DAX?
Solved! Go to Solution.
Hi, @Anonymous
According to your description,I think you can create a measure or column to calculate the desired result.
Like this:
Column = var month1=MONTH(EDATE(TODAY(),-1))
var month2=MONTH('Table'[date])
return IF(month1=month2,"True","False")Measure = var month1=MONTH(EDATE(TODAY(),-1))
var month2=MONTH(SELECTEDVALUE('Table'[date]))
return IF(month1=month2,"True","False")If it doesn’t solve your problem, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
According to your description,I think you can create a measure or column to calculate the desired result.
Like this:
Column = var month1=MONTH(EDATE(TODAY(),-1))
var month2=MONTH('Table'[date])
return IF(month1=month2,"True","False")Measure = var month1=MONTH(EDATE(TODAY(),-1))
var month2=MONTH(SELECTEDVALUE('Table'[date]))
return IF(month1=month2,"True","False")If it doesn’t solve your problem, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Here is one way to do it.
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
HI Pat,
Ive tried this and unfortunately it didnt work, it kept coming up with "BLANK" when i included the =-1 and when i excluded it wasnt of much use unfortunately. have any other ideas or able to help?
Thanks
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 61 | |
| 42 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 122 | |
| 116 | |
| 38 | |
| 32 | |
| 29 |