Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
i have this formula :
count
count(DISTINCT([profilenum]))
i need to count profilenum just when i have value in feild [stopkod]
how i need to write it ?
count(DISTINCT(<{[stopkod]>0}>[profilenum])) - wrong i think.
thanks'
yarin.
Try: count(DISTINCT {<[stopkod]={'*'}>}[profilenum])
if stopkod is numeric then try this
Count({$ <stopkod={'>0'}>} distinct profilenum)
Hi,
Try This
Count({<ProfileNum={"Stopkod"}> Distinct ProfileNum })
Hope this help.
Try: count(DISTINCT {<[stopkod]={'*'}>}[profilenum])
thanks'
yarin.