Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi all, I am trying to create a DAX loop that will help me solve the following:
Background:
Pain point:
202011 period-sum all actuals if the PaymentMonth <=23...............................................20229 period-sum all actuals if the PaymentMonth <=1,
@Anonymous
Hi @Mus123 ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
Flag =
var _dis=DISTINCTCOUNT('Table'[YearMonth])
return
_dis - [PaymentMonth] +1Loop =
var _1=SELECTCOLUMNS(FILTER(ALL('Table'),[YearMonth]=EARLIER('Table'[YearMonth])),"1",[PaymentMonth])
return
SUMX(FILTER(ALL('Table'),
'Table'[Flag] in _1 ),[Value])
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
@Anonymous my data looks like this:
Each year_month has payment_month that runs from 1 to 25.
Thank you.
P/S once the condition is met, I want to sum the actuals. e.g 20209 -sum all actuals if the payment month is <=25,
202010 -sum all actuals if the payment month is <=24 ......etc
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |