Forum Discussion
Oliullah_Siddique
Aug 04, 2022Brass Contributor
Text formula
Hello, In B4 following formula has been used: ="Income Year: "&TEXT(B1,"mmmm yyyy")&-TEXT(B2,"mmmm yyyy") The result becomes number format i.e. 43983 (Cell B4). I need the result as in Cell ...
- Aug 04, 2022
That since you have "-" before second TEXT(). Just remove it
="Income Year: " & TEXT(B1,"mmmm yyyy") & " to " & TEXT(EDATE(B1,11),"mmmm yyyy")
OliverScheurich
Aug 04, 2022Gold Contributor
="Income Year: "&TEXT(B1,"mmmm yyy ")&"to "&TEXT(B2,"mmmm yyy")
This works in my sheet.
Oliullah_Siddique
Aug 04, 2022Brass Contributor
OliverScheurich
I have attached my excel. Could it be any problem with my excel file?
In B2, I used the following formula:
=EDATE(B1,11)
Would you please see my excel?
I have attached my excel. Could it be any problem with my excel file?
In B2, I used the following formula:
=EDATE(B1,11)
Would you please see my excel?
- SergeiBaklanAug 04, 2022Diamond Contributor
That since you have "-" before second TEXT(). Just remove it
="Income Year: " & TEXT(B1,"mmmm yyyy") & " to " & TEXT(EDATE(B1,11),"mmmm yyyy")
- Oliullah_SiddiqueAug 04, 2022Brass Contributor
SergeiBaklan
"-" caused the problem.
Thanks a lot.