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! Get ahead of the game and start preparing now! Learn more
Hi,
there is some costs what I should put into loan schedule project - theses are fixed costs, for instance, 37,5/every month, but FIRST payment should be 31,25, and LAST one 6,25. it looks like that..How can create such measure/project??
Thank you in advance!
GINMED
Solved! Go to Solution.
Hello, @GINMED
PaymentFixed =
var FirstPayment = MINX(ALLSELECTED('Table'), ('Table'[Sequence]))
var LastPayment = MAXX(ALLSELECTED('Table'), ('Table'[Sequence]))
var CurrentSequence = SELECTEDVALUE('Table'[Sequence])
var CurrentPayment = SELECTEDVALUE('Table'[Payment])
var result =
SWITCH(
CurrentSequence,
FirstPayment, 31.25,
LastPayment, 6.25,
CurrentPayment
)
return result
Hello, @GINMED
PaymentFixed =
var FirstPayment = MINX(ALLSELECTED('Table'), ('Table'[Sequence]))
var LastPayment = MAXX(ALLSELECTED('Table'), ('Table'[Sequence]))
var CurrentSequence = SELECTEDVALUE('Table'[Sequence])
var CurrentPayment = SELECTEDVALUE('Table'[Payment])
var result =
SWITCH(
CurrentSequence,
FirstPayment, 31.25,
LastPayment, 6.25,
CurrentPayment
)
return result
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |