Hi All,
Hoping to be able to use a query-scoped MDX member created by the WITH keyword in an Apliqo UX widget. My MDX code is as follows:
WITH
MEMBER [consultant].[Non GBR] AS [consultant].[Total Consultants] - [consultant].[GBR]
SELECT
NON EMPTY
{[VALUES].[Total Billable Hours],[VALUES].[Total Billable Dollars]}
ON COLUMNS ,
NON EMPTY
{
([consultant].[GBR], [Project].[All Projects]),
([consultant].[Non GBR], [Project].[GBR])
}
PROPERTIES [Project].[Project].[Description] ,[consultant].[consultant].[Full Name] ON ROWS
FROM [Timesheets]
WHERE
(
[VERSION].[VERSION].[Actual + Adjustments],
[Currency].[Currency].[Local],
[YEAR].[YEAR].[FY 22/23],
[DAYS].[DAYS].[Oct]
)
Any pointers about how I could include the WITH keyword in Apliqo UX?
Thanks