Forum Discussion
Anonymous
6 years agoNot applicable
If statement on a Boolean type (Measure)
Hey everyone! I have a column that has a type of TRUE and FALSE (Boolean) and I am trying to make a measure that just outputs all the true values I have a a column like so; Time tracked ...
parry2k
6 years agoSuper User
Anonymous why not create stacked bar chart and put Is Billable column on Legend and Time Tracked on values, it will do it.
Anonymous
6 years agoNot applicable
I see that did the job! Is there a way to change the legend labels from True and False to Billable and Non-billable?
- parry2k6 years agoSuper User
Anonymous add a custom column in your model to get that label and use that on legend
Legend = IF ( Table[Is Billable], "Billable", "Non-Billable" )Would appreciate if you give Kudos if my solution helped.
- Anonymous6 years agoNot applicable
Absolute genius!
So what if i wanted to display the different amounts on cards? Like 285 hours billable
- parry2k6 years agoSuper User
Anonymous you can create a measure or put visual level filter and select value "Billable"