Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Advanced filtering and aggregation problem

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
)
)

)

2 REPLIES 2
Ashish_Mathur
Super User
Super User

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.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
AlexisOlson
Super User
Super User

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] ) )
)

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.