A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
You can also use concatenate function.
for example
=CONCATENATE("Total number of Items: ", COUNTIFS(A1:A10,">5"))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Is it possible to get a cell to display both a piece of text and the result of a function?
I want a cell to show something like "Total number of Items: 1234"
1234 is the result of a fuction [ probably countifs ]
Thanks
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi,
You can also use concatenate function.
for example
=CONCATENATE("Total number of Items: ", COUNTIFS(A1:A10,">5"))
Answer accepted by question author
Hi,
Concatenate the string and the formula like this
="Total number of items "&COUNTIF(A1:A20,B1)
if you need help with the COUNTIF(S) then post back with details.