Hi All,
I had a Query where I wanted to combine two expressions and show them into one.
These are two different count expressions.
I'd want them to be seen like.
Any particular way I can do that ?
Thanks
Regards,
Abhay
I guess you are asking about concatenating the outputs. Try using '&' character like:
=Expression1 & ' / ' & Expression2
I guess you are asking about concatenating the outputs. Try using '&' character like:
=Expression1 & ' / ' & Expression2
Okay , let me try that out.
Yes that did work .
Thank you so much for your effort.