Forum Discussion

Millar's avatar
Millar
Frequent Visitor
2 years ago
Solved

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 )

  • Millar 

    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 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

     

1 Reply

  • Millar 

    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 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