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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Two different dates slicing single visualisation

Hi ,

I have a table as shown in the screenshot . 
Then it should compare the sum of the amount for each purchase element for each date that we select in the slicer.
Let the two compare measures be Compare 1 and Compare 2. So the requirement is that when I choose a date in slicer one and a Type in costing type slicer one
it should affect data in compare one . and when I choose the date and type in slicer two it should affect the sum in comparing 2.
For example :

If I choose 28th April 2019 and Type 1 in slicer 1 and 29th April 2019 and Type 3 in slicer two than it should show ,

sum of the amount of Type 1 on 28th april Vs sum of the amount of type 3 on 29th April n the same visualisations. Currently, if I am using two different dates or two different types it shows be blank data.


sample table datasample table data

 

sample visualisationsample visualisation

 blank visual if two dates are choosenblank visual if two dates are choosen

Any idea will be welcome. Please tell if the requirement is clear. 

Thanks in advance.

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

I can create two measure to show values of comparing 1 and comparing 2.

First, create two tables

filte1 = CROSSJOIN(VALUES('Table'[type]),VALUES('Table'[date]))

filter2 = CROSSJOIN(VALUES('Table'[type]),VALUES('Table'[date]))

They have no relationship with others.

 

Then add "date" and "type" from two tables in slicers.

 

Create measures

compare1 = CALCULATE(SUM('Table'[amount]),FILTER(ALLEXCEPT('Table','Table'[item]),'Table'[type]=SELECTEDVALUE('filte1'[type])&&'Table'[date]=SELECTEDVALUE(filte1[date])))

compare2 = CALCULATE(SUM('Table'[amount]),FILTER(ALLEXCEPT('Table','Table'[item]),'Table'[type]=SELECTEDVALUE('filter2'[type])&&'Table'[date]=SELECTEDVALUE(filter2[date])))

Capture9.JPG

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

I can create two measure to show values of comparing 1 and comparing 2.

First, create two tables

filte1 = CROSSJOIN(VALUES('Table'[type]),VALUES('Table'[date]))

filter2 = CROSSJOIN(VALUES('Table'[type]),VALUES('Table'[date]))

They have no relationship with others.

 

Then add "date" and "type" from two tables in slicers.

 

Create measures

compare1 = CALCULATE(SUM('Table'[amount]),FILTER(ALLEXCEPT('Table','Table'[item]),'Table'[type]=SELECTEDVALUE('filte1'[type])&&'Table'[date]=SELECTEDVALUE(filte1[date])))

compare2 = CALCULATE(SUM('Table'[amount]),FILTER(ALLEXCEPT('Table','Table'[item]),'Table'[type]=SELECTEDVALUE('filter2'[type])&&'Table'[date]=SELECTEDVALUE(filter2[date])))

Capture9.JPG

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

vivran22
Community Champion
Community Champion

@Anonymous 

 

Hi,

 

Is your requirement to compare the total costing for two different date ranges?

 

Rgds,

Vivek

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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