Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to edit the following macro to include the date format of
"mm/dd/yyyy"...so I need to add another if statment below the If formatecode = "mm/dd/yy"....I not sure where to place the "end if" statement....Can anyone help? 'Copy format of data from Input Sheet to batch sheet Sheets("Input").Select Cells(r, c).Select formatcode = Sheets("Input").Cells(r, c).NumberFormat If formatcode = "mm/dd/yy" Then Sheets(banksheet).Cells(bankrow, 5).NumberFormat = "@" Sheets(banksheet).Cells(bankrow, 5) = Format(Sheets("Input").Cells(r, c), "mmddyy") Else 'If there is a formula in original cell, do it as values/formats. 'If there is no formula in original cell,do it as All. If Sheets("Input").Cells(r, c).HasFormula Then Selection.Copy Sheets(banksheet).Select Cells(bankrow, 5).Select Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=False _ , Transpose:=False Selection.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:=False _ , Transpose:=False Else Selection.Copy Sheets(banksheet).Select Cells(bankrow, 5).Select Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False _ , Transpose:=False End If End If 'SAM Code Sheets(banksheet).Cells(bankrow, 6) = Sheets("Input").Cells(6, c) End If c = c + 1 Loop End If |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
Complex if test program possible? If "value" "value", paste "value" in another cell? | Excel Discussion (Misc queries) | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) |