I have the folowing formula that has twxt within the formula
I need to amend this to read as follows, but canot get it to work
It should produce the folllowing for e.g.
The Net Profit YTD for 2018 has increased by R 385,255 VS the Prior year
It would be appreciated if someone could assist me
Code:
=IF(B25-C25>0,"The Net Profit "&MID(B3,9,25)&" has increased by "&TEXT(B25-C25,"R#0,##0"), IF(B25-C25<0,"The Net Profit "&MID(B3,9,25)&" has decreased by "&TEXT(B25-C25,"R(#0,##0)")&" VS"))
I need to amend this to read as follows, but canot get it to work
Code:
=IF(B25-C25>0,"The Net Profit "&MID(B3,9,25)&" has increased by "&TEXT(B25-C25,"R#0,##0") &" Vs the prior year", IF(B25-C25<0,"The Net Profit "&MID(B3,9,25)&" has decreased by "&TEXT(B25-C25,"R(#0,##0)")&" Vs the prior year"))
It should produce the folllowing for e.g.
The Net Profit YTD for 2018 has increased by R 385,255 VS the Prior year
It would be appreciated if someone could assist me