Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to get count of values from specific column.
i'm able to get count if i use like condition. example is below.
=count(distinct [ColumnA] like '%TOTAL PROFIT%')
Suppose if want to get not like '%TOTAL PROFIT%', then
what would be the syntax or different logic would be use..?
Not sure, How your expression is working? May be try this way?
count(distinct {<[ColumnA] -= {'*TOTAL PROFIT*'}>} [ColumnA])
Not sure, How your expression is working? May be try this way?
count(distinct {<[ColumnA] -= {'*TOTAL PROFIT*'}>} [ColumnA])
any update...