T TwinHype New member Local time Today, 09:43 Joined Apr 25, 2006 Messages 5 Apr 25, 2006 #1 Hi All, I'm new and have a question: I would like to display the following number 2,550,567 as 2,550 (K) Does anyone know how to apply this custom format Thanks in advance Twin
Hi All, I'm new and have a question: I would like to display the following number 2,550,567 as 2,550 (K) Does anyone know how to apply this custom format Thanks in advance Twin
R raskew AWF VIP Local time Today, 03:43 Joined Jun 2, 2001 Messages 2,734 Apr 25, 2006 #2 Hi - Try (from the debug window): x = 2550567 y = format(x\1000, "#,###(K)") ? y 2,550(K) HTH - Bob
T TwinHype New member Local time Today, 09:43 Joined Apr 25, 2006 Messages 5 Apr 25, 2006 #3 Debug Window? apologies but i'm not what you'd call a super user!!
R raskew AWF VIP Local time Today, 03:43 Joined Jun 2, 2001 Messages 2,734 Apr 25, 2006 #4 Also called the Immediate window. If using A97, press Cntl-G to display the window. In later versions, open any standard module. The immediate window should appear simultaneously.
Also called the Immediate window. If using A97, press Cntl-G to display the window. In later versions, open any standard module. The immediate window should appear simultaneously.