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
https://1drv.ms/u/s!AvCUiNWEUJeCq7Uj3wegyKJTjlsGMw?e=vusnte
@lbendlin It took a long for me to shape it .. I also tried at my end to work on earlier solution provided by you and worked something which is also attached for your reference
Requirements
Hi @Gdv ,
You can try checking R1-R30 - Transform - Unpivot Columns in Power Query.
Then create a calculated column showing the Index of the grouping, and use measure to implement the metrics for each month's totals.
Create calculated column:
Index =
var _len=LEN('2ProjectData'[Attribute])
var _find=FIND("R",'2ProjectData'[Attribute],1)
var _right=
VALUE(RIGHT([Attribute],_len-_find))
return
_right
Create Measure:
Measure =
SUMX(
FILTER(ALL('2ProjectData'),
'2ProjectData'[Licensee]=MAX('2ProjectData'[Licensee])&&'2ProjectData'[Index]<=MAX('2ProjectData'[Index])),[Value])
If the above results do not meet your expectations, can you express the expected results in the form of a picture, we can help you better
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
7 | |
3 | |
2 | |
1 | |
1 |
User | Count |
---|---|
8 | |
3 | |
2 | |
2 | |
2 |