Forum Discussion

mdemasi31's avatar
mdemasi31
New Member
5 years ago
Solved

Yes / No Filter

Good evening.   I'm working with a dataset which contains one column where users can enter either a 'YES' or 'NO' response.  In my dashboard, the customer has requested 2 cards, one counting the nu...
  • Greg_Deckler's avatar
    5 years ago

    mdemasi31 So generally take whatever your formula is and add + 0. So, let's say you have a measure that is:

     

    Measure = COUNTROWS('Table')

     

    Then you can change it to:

     

    Measure = COUNTROWS('Table') + 0

     

    For example.