Hello How I can round that number without using custom formats like this "[>999999]0.0,,\M;[>999]0.0,\K;0"

Because if y use the custom format with this formula '="EXAMPLE "&E24' puts the value without that format.
Hello How I can round that number without using custom formats like this "[>999999]0.0,,\M;[>999]0.0,\K;0"

Because if y use the custom format with this formula '="EXAMPLE "&E24' puts the value without that format.
try:
="example "&IF(A1<1000, A1,
 IF(A1<1000000,       TEXT(A1/1000,          "#.0")&"K",
 IF(A1<1000000000,    TEXT(A1/1000000,       "#.0")&"M",
 IF(A1<1000000000000, TEXT(A1/1000000000,    "#.0")&"B", 
                      TEXT(A1/1000000000000, "#.0")&"T"))))