Re: Excel
Re: Excel
- Subject: Re: Excel
- From: Thomas Maffucci <email@hidden>
- Date: Tue, 10 Feb 2009 17:51:29 -0500
- Thread-topic: Excel
On Mon, 9 Feb 2009 18:44:53
Deivy Marck Petrescu wrote:
>What you found out is that if you use "R3" instead of >"RC[-1]" it
>will work.That is excel will not put the single quotes around the
>letters.
>I still believe there is a bug with excel, and it should not put the
>quotes either way.
set entrycell to "(RC[-1],"
set tabrng to "R[-1]C[+1]:R[+3]C[+2],"
set vecrng to "R[-1]C[+2]:R[+3]C[+2])"
set part1 to "=Lookup" & entrycell & tabrng & vecrng
tell application "Microsoft Excel" to set value of cell "S3" to part1
--->=Lookup(R3,T2:U6,U2:U6)
You cannot mix referential position with
absolute position in same formula
Can't have it both ways pick one or the other !!!!
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
- Follow-Ups:
- Re: Excel
- From: Deivy Marck Petrescu <email@hidden>