Forum Discussion
JayTG123
Advocate I
4 years agoReplace Unique Text Values to Number 1
Hi all, I am hoping someone can help with this. I have a list of unique text values (Linked Permit column) and just want to replace this with a 1 so it can become a SUM and as a total on a card v...
AlexisOlson
Super User
4 years agoBTW, you don't need another column to calculate the sum of non-blank values.
An alternative would be to write a measure that counts the non-blank values.
CountNonblank = CALCULATE ( COUNT ( Table1[Linked Permit] ), Table1[Linked Permit] <> "" )