Combine vlookup/text within concatenate

Darren_workforce

Board Regular
Joined
Oct 13, 2022
Messages
128
Office Version
  1. 365
Platform
  1. Windows
Hello,

I setup the following formula to pull company NPS/CSAT data. My goal is to display both an individual score along with the team average within the same cell. That's the reason I'm using concatenate but if there is a simpler formula to provide everything I need, I'm open. My issue is that results are 8-9 decimal places and not fitting within the designated cell. I've attempted to add the TEXT(#.##,0.00) formula in multiple locations and am just missing something. Please help!!

=CONCAT(VLOOKUP(C1,'CSAT YTD calc'!D2:F99,3,FALSE)&"/"&(VLOOKUP("grand total",'CSAT YTD calc'!D2:F99,3,FALSE)))

Thank you in advance for any assistance.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Haven't tested it but give this a try

Excel Formula:
=CONCAT(TEXT(VLOOKUP(C1,'CSAT YTD calc'!D2:F99,3,FALSE), "#.##,0.00"), "/", TEXT((VLOOKUP("grand total",'CSAT YTD calc'!D2:F99,3,FALSE)), "#.##,0.00"))
 
Upvote 0
Solution
Thank you iggydarsa. That was it. OK it goes out the outside of the vllokup, then. Good stuff!! Thank you again.
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,292
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top