March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
HI,
I have created a variable called _lastdate.
I would need another variable that shows _lastdate minus 1 month, so if _lastdate is 15 July 2022, _1month should be 15 June 2022.
Formula below gives an error message:
Solved! Go to Solution.
Hi @bsz412
Try to update your code like this:
CHrn vs Last =
Var _Lastdate= calculte(...)
Var _Last_Year = year(_Lastdate)
Var _Last_Month = month(_Lastdate)
Var _Last_Day = Day(_Lastdate)
Var _1month=Date(_Last_Year,_Last_Month-1,_Last_Day)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn | Twitter | Blog | YouTube
Hi @bsz412
Try to update your code like this:
CHrn vs Last =
Var _Lastdate= calculte(...)
Var _Last_Year = year(_Lastdate)
Var _Last_Month = month(_Lastdate)
Var _Last_Day = Day(_Lastdate)
Var _1month=Date(_Last_Year,_Last_Month-1,_Last_Day)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn | Twitter | Blog | YouTube
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |