I created a table using SUMMARIZECOLUMNS in dax studio.It works. But when I added the table in my SSAS tabular cube using tabular editor by right click add a calculated table. When I copy the code in the Expression editor and validate. The table is created but with no columns ? What do I need to do to add the columns ? Code below, I'm suppose to have 3 columns but nothing.
SUMMARIZECOLUMNS (
'Client Date'[Month],
'Client Date'[Year],
FILTER ('Client Date','Client Date'[Date]=MONTH(NOW())),
"Buy", [Count Sales]
)
ORDER BY 'Client Date'[Year]
If someone understand ? on dax studio it is working.
Thanks