Forum Discussion
Millar
2 years agoFrequent Visitor
Show current month yes /no
Hi all, how to show including current month value as "yes" and excluding current month value as " no" in power bi slicer. Example i have a date column which contains last 12 month values -if i click "yes" then it show 12 month values likewise if i click "no" it should show only 11 month values (it should exclude current month value )
here is a workarond for you
create a column in date table
Column = if(year('Table'[date])=year(today())&&month('Table'[date])=month(today()),"CM")then create a new table , only contains yes and nothen create measure, below measure is just an exampleMeasure = if(SELECTEDVALUE('Table (2)'[Column1])="Yes",COUNTROWS('Table'),if(SELECTEDVALUE('Table (2)'[Column1])="no",CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[Column]<>"CM"))))pls see the attachment below
1 Reply
- ryan_mayu
Super User
here is a workarond for you
create a column in date table
Column = if(year('Table'[date])=year(today())&&month('Table'[date])=month(today()),"CM")then create a new table , only contains yes and nothen create measure, below measure is just an exampleMeasure = if(SELECTEDVALUE('Table (2)'[Column1])="Yes",COUNTROWS('Table'),if(SELECTEDVALUE('Table (2)'[Column1])="no",CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[Column]<>"CM"))))pls see the attachment below