PDA

View Full Version : Solved: Formula question



vzachin
03-02-2007, 06:39 AM
Hi,


How can I write to following to read only 2 characters from the right?

FF1 = Range("G4")

i know there's a formula Right(G4,2) but how can i write this in code?


thanks
zach

moa
03-02-2007, 06:44 AM
FF1 = right(Range("G4"),2)

vzachin
03-02-2007, 07:52 AM
hi Glen,

Thanks! it was the parentheses that threw me of


zach