Forum Discussion
[ Show in Table Chart ]
"Number Of Customer" is measure , so It don't use filter slicer and I mean this solution is not good.
I created slicer filter " Number Of Customer".
When I chose the number of transactions, only the change in the 1st chart, but there was no change in the 2nd chart according to the 1st chart.
Hi phamtrinh96 ,
You can create measure Filter1 in the first table, and put the Filter1 into the Visual Level Filter of table chart which show transaction information , setting Filter1 as "is not blank", don't forget click the "Apply filter" button.
Filter1= IF(MAX(Table1[Number Of Transaction])>1,1,BLANK())
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- phamtrinh967 years agoHelper II
Hi ,
This link is file PowerBI , Could you download and see for help me ?
https://drive.google.com/file/d/1EmgXrCQEA8k4u70NamLesprFjIXENs72/view?usp=sharing
- phamtrinh967 years agoHelper II
Hi ,
This link is file PowerBI , Could you download and see for help me ?
https://drive.google.com/file/d/1EmgXrCQEA8k4u70NamLesprFjIXENs72/view?usp=sharing
And Expect Result when I Choose NumberOfTransaction = 1
Expect Result when I choose NumberOfTransaction = 4
Thank you
- v-xicai7 years agoCommunity Support
Hi phamtrinh96 ,
You can create column NumberOfTransaction_Column, and put it in Slicer visual as new slicer. It seems your Hierarchyslicer NumberOfTransaction have no logical relationship with the other tables, and the measure can't be put into slicer visual, so I recommend you create column as new slicer.
NumberOfTransaction_Column = CALCULATE(COUNT(TransactionInformation[RestaurantCode]),FILTER(ALLSELECTED(TransactionInformation),TransactionInformation[CustomerNumber]=EARLIER(CustomerInformation[CustomerNumber])))
When make some selections in the new slicer, return result showing picture below.
For your demand in original page >>And I want show The Customers have " Number Of Transaction " > 1, you can put the column NumberOfTransaction_Column into the Visual Level Filter of table chart which show transaction information , setting it as "is greater than 1", don't forget click the "Apply filter" button.
Here is my test pbix: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EdomtDbYD8VBn2KBskhxPBIBO5cx5qJvjDoaVbdpnRIwQw?e=Oye9c6
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.