Quarter to Text?
Hello Community,
How can i go from the line item Quarter ( Quarter ) to Quarter ( Text )
example :
Q3 (Quarter format) to Q3 (Text format)
Thank you
Best Answers
-
NAME('Month (month)') will give Jan 24 in Text format. If you need the month in 012024 (text) format. Use this formula: (IF MONTH('Month (month)') < 10 THEN "0" & TEXT(MONTH('Month (month)')) ELSE TEXT(MONTH('Month (month)'))) & TEXT(YEAR('Month (month)'))
1 -
@ILYAS
Convert between data types | Anapedia
Is the go to article which gives the overview of the conversion functions and then by going through each function helps to solve the conversion issues.0
Answers
-
Does this help?
0 -
For more data conversions like these, refer this article.
1 -
do i have to do the same thing if for example i want to go from
Jan 24 (month ) to 012024 ( Text ) ?0