Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

string beside expression

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?

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Use '&' symbol to concat a string, like:

=Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date]) & 'working day'

View solution in original post

4 Replies
tresesco
MVP
MVP

Use '&' symbol to concat a string, like:

=Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date]) & 'working day'

ashfaq_haseeb
Champion III
Champion III

Yo can ttryyr like this

= 'working day' &Count (Distinct{ <[F Sr Net Sales Amount]={">=0"}>}[Full Date])

Regards

ASHFAQ

israrkhan
Specialist II
Specialist II

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]) )

cheburashka
Creator III
Creator III

Hi mana azizi

Don't forget to mark your discussion as answered.

,Thanks