Forum Discussion
gettingittogether25
May 20, 2022Copper Contributor
Take data from excel cells and make a sentence
Hi, I have a form of 8 cells (as you can see in the attached picture) & I need to get the values in a sentence like in the picture. If possible is there a way to calculate duration as well in the...
- Feb 28, 2019
Hi,
The first step is to link the Week1 cell to the Number to subtract per week using this formula:
=A2
The second step, use this formula in Week2 and drag it to the right:
IF(SUM($D2:D2,$A2)<=$B2,$A2,IF($B2-SUM($D2:D2)=0,"",$B2-SUM($D2:D2)))
Regards,
Haytham
HansVogelaar
May 20, 2022MVP
=A2& " | "&TEXT(C2,"$#,##0")&" | "&DATEDIF(D2,E2,"m")&" month(s)"&CHAR(10)&"Location: "&G2&", US Geo Focus: "&H2&CHAR(10)&F10
It is not possible to make part of the result of the formula bold. Excel does not support that.
- gettingittogether25May 20, 2022Copper Contributor
HansVogelaar Works like a dream! Thank you!