Forum Discussion
Luke_Hively
Jan 25, 2022Copper Contributor
Adding a formula after brackets
Hello, I am currently working on windows 10 and have selected an example cell of the one I would like to edit. I am struggling to insert a vlookup formula to pull a price from another workbo...
- Jan 25, 2022
You can use a formula of the form
="[ADD]"&VLOOKUP(...)
If you want to round the price to (for example) two decimal places, use
="[ADD]"&TEXT(VLOOKUP(...),"0.00")
HansVogelaar
Jan 25, 2022MVP
You can use a formula of the form
="[ADD]"&VLOOKUP(...)
If you want to round the price to (for example) two decimal places, use
="[ADD]"&TEXT(VLOOKUP(...),"0.00")
Luke_Hively
Jan 25, 2022Copper Contributor
Thank you very much it worked perfectly