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 ...
- 2 years ago
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
ryan_mayu
Super User
2 years agohere 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 no
then create measure, below measure is just an example
Measure = 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