Forum Discussion
how to exclude filter in KPI
- 5 years ago
abc_777 ,
Try like
calculate([KPI3], removefilters(Date))
or
calculate([KPI3], removefilters(Date[Date]))
- 5 years ago
maybe you can try to change visual interactions
https://docs.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions
- 3 years ago
Over-all Employees =
COUNTX(
ALL(Table_Name),
Table_Name[Employee_Name]
)
//The ALL function shields this KPI from other slicer filters and other context filters.
Hi Anonymous
we are almost there.
I want to filter
CR test = COUNTROWS ( FILTER ( ALL ( 'table' ), LEFT ( 'table'[column], 2 ) = "CR" ) )
and
Total Customer Count =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Customer ID] ),
FILTER ( ALL ( 'Table' ), 'Table'[Month name] = 'March' )
something like following . This is syntax error. please correct where I can put && for "CR" and "April"
Hi abc_777 ,
Please update the formula of your measure as below:
| CR Count Test = CALCULATE ( DISTINCTCOUNT ( 'Table'[Column] ), FILTER ( ALL ( Table ), 'Table'[Column] = "April" && LEFT ( 'Table'[Column], 2 ) = "CR" ) ) |
Any comment or problem, please feel free to let me know.
Best Regards
- abc_7775 years ago
Solution Specialist
Anonymous
thanks for your reply.
i am able to filter All upto calendar but not "CR"
when I type left(
telesense not show me 'bm_all_cul bm_sales_dhk_all_cul'[Invoice] table to type rest of the formula
('bm_all_cul bm_sales_dhk_all_cul'[Invoice],2) = "CR"
telesense only shows me all built in formula and measures that I was created previouslly. this is why I raised last thread. so what is my error how i can filter "April "as well as "CR"
CR Count Test =CALCULATE (DISTINCTCOUNT ( 'bm_all_cul bm_sales_dhk_all_cul'[Invoice]),FILTER (ALL (BMCalendar),BMCalendar[MonthName]= "April"&&left(sale)) - Anonymous5 years agoNot applicable
Hi abc_777 ,
Please update the formula of measure as below:
CR Count Test =
CALCULATE (
DISTINCTCOUNT ( 'bm_all_cul bm_sales_dhk_all_cul'[Invoice] ),
FILTER ( ALL ( BMCalendar ), BMCalendar[MonthName] = "April" ),
FILTER (
ALL ( 'bm_all_cul bm_sales_dhk_all_cul' ),
LEFT ( 'bm_all_cul bm_sales_dhk_all_cul'[Column], 2 ) = "CR"
)
)If the above one still not get the correct result, please share your sample pbix file(exclude sensitive data) with me in order to provide you a suitable solution later. Thank you.
Best Regards
- abc_7775 years ago
Solution Specialist
Anonymous ,
now the formula is working. BUt dont know why the value comes difference.
If you have any idea.
CR Invoice Count = COUNTROWS ( FILTER (ALL( 'bm_all_cul bm_sales_dhk_all_cul' ), LEFT ( 'bm_all_cul bm_sales_dhk_all_cul'[Invoice], 2 ) = "CR" ) )is gives me 26671 CR data for MarchCR Count Test =CALCULATE (Count ( 'bm_all_cul bm_sales_dhk_all_cul'[Invoice] ),FILTER ( ALL ( BMCalendar ), BMCalendar[MonthName] = "March" ),FILTER (ALL ( 'bm_all_cul bm_sales_dhk_all_cul' ),LEFT ( 'bm_all_cul bm_sales_dhk_all_cul'[Invoice], 2 ) = "CR"))this gives me 2563 CR data for march.not sure why. they should be samefor both of these measure CR is filtered by measure and top one using Calendar Slicer and bottom one using Measure. - abc_7775 years ago
Solution Specialist
any update?
- Anonymous5 years agoNot applicable
Hi abc_777 ,
Could you please share your sample pbix file with me by private message in order to make troubleshooting and provide a suitable solution? It is difficult to find the cause of problem without the data. Thank you.
Best Regards