Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi all, I appreciate your help with the following
I need to create in my calendar table a column that indicates a status, the status depends on the date I have selected, for example if I select March that in the new coluna I see a status (TAM) from the aultimos 12 months to back.
This is my calendar table:
and I need something like this to be
Solved! Go to Solution.
Hi @Syndicate_Admin ,
I created some data:
DATE(2021,1,1) -- DATE(2024,12,31)
Here are the steps you can follow:
1. Create calculated column.
Column =
IF(
'Table'[Date]>EOMONTH(TODAY(),0)&&'Table'[Date]<=EOMONTH(TODAY(),+12),"TAM",BLANK())
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Syndicate_Admin ,
I created some data:
DATE(2021,1,1) -- DATE(2024,12,31)
Here are the steps you can follow:
1. Create calculated column.
Column =
IF(
'Table'[Date]>EOMONTH(TODAY(),0)&&'Table'[Date]<=EOMONTH(TODAY(),+12),"TAM",BLANK())
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@Syndicate_Admin , You can not use slicer value in a calculated table or calculated column
Hello, maybe I do not explain well, what I am needing is in a new column to create a state depending on the date, for example that if I am in the month of January, from January I put a state "True" 12 months for back and the rest of the dates "False"
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 43 | |
| 31 | |
| 27 | |
| 23 |
| User | Count |
|---|---|
| 134 | |
| 113 | |
| 58 | |
| 39 | |
| 35 |