May 9, 2005 at 12:07 pm
This is correct
store.currentmember.properties("Store_Manager")
I want to obtain information of the column Store_Manager, the table Store, this is dimension, but BUT IT SHOW TO ME A MESSAGE OF ERROR: #ERR
Do you can help me?
May 9, 2005 at 7:32 pm
First and dummiest: single quote instead of double quote.
_____________
Code for TallyGenerator
May 10, 2005 at 8:52 am
Double quote, single quote IT SHOW TO ME A MESSAGE OF ERROR and not permit run
See this sample, I create in MDX Sample Application:
WITH
MEMBER
Measures.[Store SqFt]
AS
'[Store].CURRENTMEMBER.PROPERTIES("store name")'
SELECT
{ [Measures].[Store SQFT], [Measures].[Store Cost], [Measures].[Unit Sales] }
ON COLUMNS,
[Store].[Store Name].MEMBERS
ON ROWS
FROM Sales
The column Store SqFt, show message #ERR
May 11, 2005 at 4:33 am
You must change :
Measures.[Store SqFt]
AS
'[Store].CURRENTMEMBER.PROPERTIES("store name")'
to
Measures.[Store SqFt]
AS
'[Store].CURRENTMEMBER.PROPERTIES("Store SqFt")'
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply