Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
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!
I have a report which has daily orders and billings. I want to add a column for backlog (any orders that are still open) However, when I try to add it, it just gives me the daily amount, but i would like backlog to be a summation total and not a daily value like the other columns.
Example below: I want a column like in blue, where it gives me the total backlog for each day, and not the daily amount.
Any tips?
Thanks!!
Solved! Go to Solution.
Hi @PBINewbie920 ,
Calculate column expression:
Backlog =
var _2021totalbacklog = 500
return
SUMX(FILTER('Backlog',[Backlog]<=EARLIER('Table'[Date])),[Daily Added])+_2021totalbacklog
Measure in visual :
backlog_m =
VAR _2021totalbacklog = 500
RETURN
SUMX (
FILTER ( ALLSELECTED ( 'Backlog' ), [Backlog] <= MAX ( 'Table'[Date] ) ),
[Daily Added]
) + _2021totalbacklog
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @PBINewbie920 ,
Calculate column expression:
Backlog =
var _2021totalbacklog = 500
return
SUMX(FILTER('Backlog',[Backlog]<=EARLIER('Table'[Date])),[Daily Added])+_2021totalbacklog
Measure in visual :
backlog_m =
VAR _2021totalbacklog = 500
RETURN
SUMX (
FILTER ( ALLSELECTED ( 'Backlog' ), [Backlog] <= MAX ( 'Table'[Date] ) ),
[Daily Added]
) + _2021totalbacklog
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@PBINewbie920 , These tables need to share the common date and other dimension tables.
Then you can show this visual using common date table
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
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 |
|---|---|
| 56 | |
| 47 | |
| 44 | |
| 20 | |
| 20 |
| User | Count |
|---|---|
| 73 | |
| 72 | |
| 34 | |
| 33 | |
| 31 |