
Announcements
Hi,
I have an issue (failed) somewhere in the following steps I created in the app:
Steps:
i think the issue is in the Dax query but not sure:
//DAX Query
DEFINE
VAR_Payment_Data =
SUMMARIZECOLUMNS(
'CCMS Billings append'[Market Unit],
'CCMS Billings append'[Client],
'CCMS Billings append'[Billing Document],
'CCMS Billings append'[CT],
'CCMS Billings append'[Document Date],
'CCMS Billings append'[Clearing Date],
'CCMS Billings append'[Status],
'CCMS Billings append'[Amount in USD])
EVALUATE
_Payment_Data
then next steps
I used a "normal" way to create .csv but works only with 1000 rows. I found the previous solution in YT that works for more rows . I replicated the same but it failed as you see above. So not sure where is the mistake.
Hope you can help me.
Thanks!