Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Is it possible to have 2 functions in 1 cell with a seperator?

I am having trouble figuring out how to use fit 2 =SUM formulas into 1 cell with a seperator(‘/’ or ‘|’)

Formula 1: =SUM(Sheet2!E28) – 1
Formula 2: =SUM(Sheet3!C19) – 2

The result would be something like 1/2 or 1|2, is this possible?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

There are multiple ways to do that. One of simple way is to use concatenation operator &. Try-

=SUM(Sheet2!E28)-1 & "|" & SUM(Sheet3!C19)-2

Another way is to use TEXTJOIN().

=TEXTJOIN("|",TRUE,SUM(Sheet2!E28)-1,SUM(Sheet3!C19)-2)
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading