Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have a calender table and added this year and last year columns basically like
this_year=if(date(date)>31/10/2020, "TY","")
unfurtunately I need to change the date in formula manually. is there any way to create a column for last 12 months date to mark as TY? ie next month date need to be 30/11/2020... It might be easy but I could not find it in column formula and not want to use measure to create it because mostly people want to use show data point as table section.
Solved! Go to Solution.
Hi @selpaqm
Try this:
Var _EndMonth = EOMONTH(Today()) --return date in datetime format of the last day of the month based on today date
Var _LastY = Date(Year(_EndMonth)-1,month(_EndMonth),day(_EndMonth)) --Last year date
this_year=if(date(date)>=_LastY&&date(date)<=_EndMonth, "TY","")
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @selpaqm
You can use EOMONTH(TODAY(),-13) to replace the static date, i.e.
this_year=if(date(date)>EOMONTH(TODAY(),-13), "TY","")
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @selpaqm
You can use EOMONTH(TODAY(),-13) to replace the static date, i.e.
this_year=if(date(date)>EOMONTH(TODAY(),-13), "TY","")
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @selpaqm
Try this:
Var _EndMonth = EOMONTH(Today()) --return date in datetime format of the last day of the month based on today date
Var _LastY = Date(Year(_EndMonth)-1,month(_EndMonth),day(_EndMonth)) --Last year date
this_year=if(date(date)>=_LastY&&date(date)<=_EndMonth, "TY","")
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 39 | |
| 35 | |
| 23 |