Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
Hi,
I'm trying to do the simplest calculation here. A have a table with a Date Key column and a colum "IsPayday", which is of Type Whole number.
I want to have a running total of the second one and have tried many variations of the formula below, but haven't figured it out:
Thanks for your help!
Solved! Go to Solution.
try
Is Payday running total =
VAR MaxDate =
MAX ( 'Calendar'[Datekey] )
VAR Result =
CALCULATE ( SUM ( 'Calendar'[Is payday] ), 'Calendar'[Datekey] <= MaxDate )
RETURN
Result
Thank for your help.
I decided to change the source data and add ispayday as boolean in the data warehouse. With the field imported into Power BI I used the following variation of your code and got the calculation working:
Is Payday running total =
VAR MaxDate =
MAX ( 'Calendar'[Datekey] )
VAR Result =
CALCULATE(COUNTROWS('Calendar'), 'Calendar'[Datekey] <= MaxDate && 'Calendar'[ispayday] = true )
RETURN
Result
try
Is Payday running total =
VAR MaxDate =
MAX ( 'Calendar'[Datekey] )
VAR Result =
CALCULATE ( SUM ( 'Calendar'[Is payday] ), 'Calendar'[Datekey] <= MaxDate )
RETURN
Result
Thanks for your help @johnt75
I tried it and have this error:
IsPayday is a custom column that I created in the Power Query Editor. Can that be the problem?
You have an extra ] after IsPayday
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 |
|---|---|
| 51 | |
| 43 | |
| 39 | |
| 19 | |
| 19 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 34 | |
| 33 | |
| 30 |