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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Calculate Data using Date Slicer

Hi Everyone,

 

I don't know if this can be done but here goes nothing. I have a Table that has 2 fields; "Report Date" and "Orig Amount". What I would like to do is do create two more columns - one for Amt Previous that shows all the Original Amount that happened before the begin date of slicer, and the other column is to show all Original Amount that happened during the selected date range of slicer.

 

In my MS access databased I set it up like this

 

AmtPrevious: IIf([SubRptDate]<DateValue([TempVars]![varPerBegin]),[FedOrigSubAmt],0)

 

AmtThisPeriod: IIf([SubRptDate] Between DateValue([TempVars]![varPerBegin]) And DateValue([TempVars]![varPerEnd]),[FedOrigSubAmt],0)

 

So I'm wondering if I can do the same thing in MS access but this time use the date slicer. Thank you in advance.

 

 

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Anonymous

You can create two measures and place each of them in a Card visual or both in a multi-row Card visual. 

The measure for Amt Previous:

 

AmountB4SlicerPeriod =
CALCULATE (
    SUM ( Table1[OriginalAmount] );
    FILTER (
        ALL ( Table1[ReportDate] );
        Table1[ReportDate] < MIN ( Table1[ReportDate] )
    )
)

and the other one:

 

AmountDuringSlicerPeriod = 
SUM(Table1[OriginalAmount])

 

Code formatted with   www.daxformatter.com

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

HI @Anonymous,

 

I think you need to use measure to achieve this, current power bi not support to create dynamic calculated column/tables based on slicer.

Calculated Column/Table Change Dynamically According to Slicer Selection in the Report.

 

Regards,

Xiaoxin Sheng

AlB
Community Champion
Community Champion

Hi @Anonymous

You can create two measures and place each of them in a Card visual or both in a multi-row Card visual. 

The measure for Amt Previous:

 

AmountB4SlicerPeriod =
CALCULATE (
    SUM ( Table1[OriginalAmount] );
    FILTER (
        ALL ( Table1[ReportDate] );
        Table1[ReportDate] < MIN ( Table1[ReportDate] )
    )
)

and the other one:

 

AmountDuringSlicerPeriod = 
SUM(Table1[OriginalAmount])

 

Code formatted with   www.daxformatter.com

 

Anonymous
Not applicable

Thank you so much, this works 🙂

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.