Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
i want to show string "working day" beside this code on the caption of a pivot table:
=Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date])
is it possible?
Use '&' symbol to concat a string, like:
=Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date]) & 'working day'
Use '&' symbol to concat a string, like:
=Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date]) & 'working day'
Yo can ttryyr like this
= 'working day' &Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date])
Regards
ASHFAQ
tresesco said..will work
but this as well, if you wana show on start
= 'working day ' & (Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date]) )