R
rocky
The following snipped doesn't return anything. Item_num is undefined.
set C_loc to "R990"
set Item_num to ""
set C_Value to C_loc & "C1"
tell application "Microsoft Excel" to set Item_num to «class pval» of
cell C_Value
I gather with the new addressing scheme I'm should us something like:
set C_loc to "990"
set Item_num to ""
set C_Value to "A" & C_loc
tell application "Microsoft Excel" to set Item_num to «class pval» of
cell C_Value
This gets a missing value.
So R990C1 worked in the old Excel but A990 isn't the equivalent. The
Excel dictionary hasn't been very helpful. Anyone know the secret?
Thanks
set C_loc to "R990"
set Item_num to ""
set C_Value to C_loc & "C1"
tell application "Microsoft Excel" to set Item_num to «class pval» of
cell C_Value
I gather with the new addressing scheme I'm should us something like:
set C_loc to "990"
set Item_num to ""
set C_Value to "A" & C_loc
tell application "Microsoft Excel" to set Item_num to «class pval» of
cell C_Value
This gets a missing value.
So R990C1 worked in the old Excel but A990 isn't the equivalent. The
Excel dictionary hasn't been very helpful. Anyone know the secret?
Thanks