Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using data validation to ensure the cells in the range are either 5 or 9
digits in length; however, I don't know how to set the formatting of the cell to recognize whether to use the Zip Code format or the ZIP Code +4 format. Can I get both? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Post the formulas you're using to ensure a 5 or 9 digit entry.
-- Regards, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "dandiehl" wrote in message ... I am using data validation to ensure the cells in the range are either 5 or 9 digits in length; however, I don't know how to set the formatting of the cell to recognize whether to use the Zip Code format or the ZIP Code +4 format. Can I get both? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe with something like this..........
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) If Len(Target) = 5 Then Selection.NumberFormat = "00000" Else If Len(Target) = 9 Then Selection.NumberFormat = "00000-0000" Else End If End If End Sub Vaya con Dios, Chuck, CABGx3 "dandiehl" wrote in message ... I am using data validation to ensure the cells in the range are either 5 or 9 digits in length; however, I don't know how to set the formatting of the cell to recognize whether to use the Zip Code format or the ZIP Code +4 format. Can I get both? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try a custom format of
Format|Cells|Number tab|Custom category [99999]00000-0000;00000 dandiehl wrote: I am using data validation to ensure the cells in the range are either 5 or 9 digits in length; however, I don't know how to set the formatting of the cell to recognize whether to use the Zip Code format or the ZIP Code +4 format. Can I get both? -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you all for your help!
"Dave Peterson" wrote: Try a custom format of Format|Cells|Number tab|Custom category [99999]00000-0000;00000 dandiehl wrote: I am using data validation to ensure the cells in the range are either 5 or 9 digits in length; however, I don't know how to set the formatting of the cell to recognize whether to use the Zip Code format or the ZIP Code +4 format. Can I get both? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Maintain cell formatting in target cell when using Paste | Excel Discussion (Misc queries) | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
expanding custom formatting without removing existing cell formatting? | Excel Worksheet Functions | |||
Conditional cell background formatting, based on cell content | Excel Discussion (Misc queries) |