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
I'd like to create a calculated table ( i think using SUMARIZE) from a table called BILLING
that returns COMPANYNAME
, city, state
, a column named FinalDate (where finaldate is somewhere between now and 12 months in the future)
, a sum of the last 12 months RECEIPT by companyname
I have a column called MONTHSAGO which is zero based and can be used to filter the last 12 months of records,
but i do not understand how to add the filter which will show only totals where the FINALDATE is between now and 12 months in the future. is that a filter all or something else?
=SUMMARIZE(BILLING
,BILLING[CompanyName]
,BILLING[CITY]
,BILLING[STATE]
,BILLING[FINALDATE]
, "RECEIPTTOTAL", calculate(
sum(BILLING[RECEPT])
,Filter (
(BILLING),
(BILLING[MONTHSAGO]) < 12
)
)
)
Hi,
Why do you want to create a calculated table? Why not an actual visual? Calculated tables do not respond to changes in slicer while visuals do.
It's not quite clear to me what your data table looks like. Is there only one MONTHSAGO value for each FINALDATE?
If so, does this work for what you're after?
SUMMARIZECOLUMNS (
BILLING[CompanyName],
BILLING[CITY],
BILLING[STATE],
BILLING[FINALDATE],
FILTER ( VALUES ( BILLING[MONTHSAGO] ), BILLING[MONTHSAGO] < 12 ),
"RECEIPTTOTAL", CALCULATE ( SUM ( BILLING[RECEPT] ) )
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 61 | |
| 43 | |
| 40 | |
| 38 | |
| 22 |
| User | Count |
|---|---|
| 178 | |
| 125 | |
| 116 | |
| 77 | |
| 54 |