Can I use conditional sections in VBA number formats

grahamj

Board Regular
Joined
Feb 18, 2003
Messages
101
I like the ability to use conditions, such as [<100], or colours, such as [Red], in custom number formats in cells.

But can I use these, or an equivalent, using Format in VBA?

My current requirement is something like this:
Code:
shtCalendar.Cells(rt, cPlace) = shtEvents.Cells(r, cEventPlace) & Chr(10) & Format(shtEvents.Cells(r, cEventTime), "[=0]""Midnight"";[=0.5]""Noon"";h.mm am/pm")

Using other forms within the format expression, such as \N\o\o\n, or "[=0]" & Chr(34) & "Midnight" ..., don't help.

Is it something that Format does not cater for?

Thanks
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Here is a way to format the cell by VBA ...

Code:
Range("A:A").NumberFormat = "[Red][<=100];[Blue][>100]"

Try
- recording a macro as you number format a cell manually and tailoring the recorded macro to what you want
 
Last edited:
Upvote 0
No, it doesn't, but you could use Application.Text instead.
 
Upvote 0
Ah. Thank you, Rory.
Replace Format(... in my code with WorksheetFunction.Text(...

Works great.
 
Upvote 0

Forum statistics

Threads
1,226,112
Messages
6,189,036
Members
453,520
Latest member
packrat68

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top