|
| PutBlock problem |
 |
Fri, 22 Feb 2008 10:42:44 -080 |
{PutBlock @PROPERTY("Active_Page.Name"), B7} puts a formula in to B7
wich
gives ERR when page name starts whith a number (25_3rd_st). All I need in
B7 is a label of the page name.
Any ideas?
Jeff
|
| Post Reply
|
| Re: PutBlock problem |
 |
Fri, 22 Feb 2008 12:58:34 -070 |
Jeff wrote:
> {PutBlock @PROPERTY("Active_Page.Name"), B7} puts a formula in to
B7 wich
> gives ERR when page name starts whith a number (25_3rd_st). All I need in
> B7 is a label of the page name.
> Any ideas?
The ERR stems from the quirky manner in which enters data into a
cell: using your syntax, the page name is entered into the target cell with a
preceding plus sign, which will return ERR unless you have a range named
25_3rd_st.
Your alternatives would be either:
+"{PutBlock
""'"&@PROPERTY("Active_Page.Name")&""
", B7}"
or, more simply:
{LET B7,@PROPERTY("Active_Page.Name")}
Cheers,
Uli
|
| Post Reply
|
| Re: PutBlock problem |
 |
Fri, 22 Feb 2008 13:48:19 -060 |
Same problem in x3. Use as an alternative.
|
| Post Reply
|
| Re: PutBlock problem |
 |
Fri, 22 Feb 2008 14:13:15 -060 |
Good alternatives Uli.
Another:
{PutBlock "'"&@PROPERTY("Active_Page.Name"), b7}
|
| Post Reply
|
| Re: PutBlock problem |
 |
Fri, 22 Feb 2008 15:21:24 -080 |
+"{PutBlock
""'"&@PROPERTY("Active_Page.Name")&""
", B7}"
with ReCulc did the job.
Thank you.
Jeff
"Uli" <nojunkmail@spamless.com> wrote in message
news:47bf2924_2@cnews...
>
> Jeff wrote:
>> {PutBlock @PROPERTY("Active_Page.Name"), B7} puts a formula
in to B7 wich
>> gives ERR when page name starts whith a number (25_3rd_st). All I need
>> in B7 is a label of the page name.
>> Any ideas?
>
> The ERR stems from the quirky manner in which enters data into
> a cell: using your syntax, the page name is entered into the target cell
> with a preceding plus sign, which will return ERR unless you have a range
> named 25_3rd_st.
>
> Your alternatives would be either:
>
> +"{PutBlock
""'"&@PROPERTY("Active_Page.Name")&""
", B7}"
>
> or, more simply:
>
> {LET B7,@PROPERTY("Active_Page.Name")}
>
> Cheers,
> Uli
>
|
| Post Reply
|
|
|
|
|
|
|
|
|
|