cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
jwhk
Helper III
Helper III

Combine Two DAX Queries into One CSV Table, and Later Multiple CSV Tables into Different Worksheets in One Excel File

Dear Microsoft Power Automate Community,

 

Refer to the attached screenshot, I have created a flow to run the recurrence on three (3) Scopes that will run DAX queries on the same Power BI dataset. However, I have the following queries for the next steps:

 

1) How to combine two (2) DAX queries into one (1) single CSV table? Should I use "first table rows" or "output" from Create CSV Table? Or should I use Compose/Select then use "Union" function to join them?

 

2) With the generated CSV tables, how to combine these CSV tables into three (3) different Worksheets in one (1) single Excel file?

 

I have tried to google-ed the answers from this forum (such as the link below), but I still can't understand how to do it yet.

 

Combine Multiple CSV tables into one file - Power Platform Community (microsoft.com)

 

Much appreciated for your advise.

73 REPLIES 73

Hi @v-yueyun-msft,

 

Thanks for your reply.

 

I changed Json From to body('Select_2b') and the test flow was successfully completed.

 

However, the data shown in the csv file was displayed in 1 single line/row (see the screenshot below).

 

jwhk_0-1707376239123.png

 

Here's the Inputs and Outputs from "Join 2b" action:

 

jwhk_1-1707376536343.png

 

 

Hi , @jwhk 

Can you click here and copy the output to me  to test?

vyueyunmsft_0-1707377061181.png

 

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft,

 

I copied and pasted the Inputs and Outputs of "Join 2b" action in the attached file.

Hi , @jwhk 

Thanks for your response! I test it in my side , it seems it has no issue...

vyueyunmsft_0-1707378002706.pngvyueyunmsft_1-1707378064091.png

decodeUriComponent('%0D%0A')

 

And this is my output of my Join action and it is the same as yours ... Can you check the "Create file" in your side?

{
    "body": "[Warehouse],[Date],[Time],[Item No.],[Item Name],[Location],[Order No.],[Delivery No.],[Lot No.],[Ref Text],[Quantity],,,[Date],[Delivery No.],[Sum of Quantity]\r\n65E,20240201,61154,11163275,Nova FF 11mm 800,DERBY,0066177323,51912603,0021394660,654=>65E,120750,,,20240201,51895259,14400\r\n65E,20240201,100857,13781625,Protec FF 5mm 800,DERBY,0066175833,51895259,0020347070,65G=>65E,14400,,,20240201,51912603,120750"
}

 

Best Regards,

Yueyun Zhang

@v-yueyun-msft,

 

Thanks for your feedback yesterday.

 

I checked "Create file 2b" action and noticed I put the wrong output in File Content. The correct output is body('Join_2b'), not Outputs('Join_2b').

 

Now the csv file looks great except the missing figure "135150" for total of [Sum of Quantity] in the right-hand side table.

jwhk_0-1707433820118.png

If you look at the Outputs of "Create CSV table 2b" action, you can see 135150 there.

jwhk_1-1707433975255.png

But 135150 started missing from the Outputs of "Select 2b" action (if you refer to the txt file I attached in my previous message).

 

Refer to the screenshot below, you can see "Run a query against a dataset 2b" and "Create CSV table 2b" actions were ran below the "Condition" action. Is this the reason why 135150 was missing from "Select 2b" action?

jwhk_2-1707434226292.png

 

 

 

Hi , @jwhk 

Thanks for your response! This seems your condition is opposite.

vyueyunmsft_0-1707456815931.png

 

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft,

 

Thanks for your feedback last Friday and hope you have a wonderful lunar new year celebration.

 

I believe my condition was set correctly, because if I change the condition based on your advice, the csv file has reversed the display of 2 DAX queries (see the screenshot below) and the figure "135150" for total of [Sum of Quantity] is still missing.

jwhk_1-1707797817484.png

 

I have rollbacked my condition as followed which diplayed the correct 2 DAX queries in the correct position in csv file except the missing figure "135150":

 

jwhk_0-1707802438869.png

 

Condition:

Dataset 2a Rows > Dataset 2b Rows

 

If Yes, Select 2a:

range(0,length(outputs('Run_a_query_against_a_dataset_2a')?['body/firstTableRows']))
concat(split(body('Create_CSV_table_2b'), decodeUriComponent('%0D%0A'))?[item()], ',,,', split(body('Create_CSV_table_2a'), decodeUriComponent('%0D%0A'))?[item()])
 
If No, Select 2b:
range(0,length(outputs('Run_a_query_against_a_dataset_2b')?['body/firstTableRows']))
concat(split(body('Create_CSV_table_2a'), decodeUriComponent('%0D%0A'))?[item()], ',,,', split(body('Create_CSV_table_2b'), decodeUriComponent('%0D%0A'))?[item()])

 

For another DAX queries for Dataset 1a Rows and Dataset 1b Rows, I put the similar conditions as below.

 

Condition:

Dataset 1a Rows > Dataset 1b Rows

 

If Yes, Select 1a:

range(0,length(outputs('Run_a_query_against_a_dataset_1a')?['body/firstTableRows']))
concat(split(body('Create_CSV_table_1b'), decodeUriComponent('%0D%0A'))?[item()], ',,,', split(body('Create_CSV_table_1a'), decodeUriComponent('%0D%0A'))?[item()])
 
If No, Select 1b:
range(0,length(outputs('Run_a_query_against_a_dataset_1b')?['body/firstTableRows']))
concat(split(body('Create_CSV_table_1a'), decodeUriComponent('%0D%0A'))?[item()], ',,,', split(body('Create_CSV_table_1b'), decodeUriComponent('%0D%0A'))?[item()])


Then, this csv file has 2 issues:

1) The DAX query on the right-hand side has misalignment after row 7.

2) The figure of 119,660 for the total [Quantity] is missing for DAX query on the right-hand side.

 

jwhk_0-1707802215170.png

 

jwhk
Helper III
Helper III

Hi @v-yueyun-msft,

 

Hope this message finds you well.

 

Any update based on my last feedback sent a week ago?

 

I'm thinking whether this will help to make the flow actions perform better in this way for joining 2 DAX queries into 1 single CSV file. But because I add "Select1a" and "Select 1b" actions after the respective "Run a query against a dataset" action, I wonder what to change in range() and concat() in "Select 1c" and Select 1d" actions.

 

Run a query against a database 1a > Select 1a (to rename the column names/headers) > Create CSV table 1a > Condition (Dataset 1 Row > Dataset 2 Row )

 

and

 

Run a query against a database 1b > Select 1b (to rename the column names/headers) > Create CSV table 1b > Condition (Dataset 1 Row > Dataset 2 Row )

 

If condition = true:

Select 1a (for range(First Table Row Dataset1) and concat(Create CSV table 1b + Create CSV table 1a)) > Join 1a > Create file 1a

 

If condition = false:

Select 1b (for range(First Table Row Dataset2) and concat(Create CSV table 1a + Create CSV table 1b)) > Join 1b > Create file 1b

 

jwhk_0-1708487770882.png

 

Hi , @jwhk 

Thanks for your response ! In my side , i use this logic.


if dataset 1a > dataset 1b:
if yes:


range(0, length(outputs('Run_a_query_against_a_dataset')?['body/firstTableRows']))


concat(split(body('Create_CSV_table_1a'), decodeUriComponent('%0D%0A'))?[item()], ',,,', split(body('Create_CSV_table_1b'), decodeUriComponent('%0D%0A'))?[item()])

 

if no:
range( 0 , length(outputs('Run_a_query_against_a_dataset_2')?['body/firstTableRows']) )


concat( split(body('Create_CSV_table_1b'),decodeUriComponent('%0D%0A'))?[item()] , ',,,' , split(body('Create_CSV_table_1a'),decodeUriComponent('%0D%0A'))?[item()] )

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft,

 

Thanks for your reply.

 

This is what I get in CSV file by following your logic.

jwhk_1-1708652829963.png

And, this is what I get if I retain the same logic I set earlier. 

jwhk_0-1708652579551.png

I didn't see any differences except the 2 tables are displayed in left right or right left. However the figure "135150" for total of [Sum of Quantity] is still missing after the "Condition" action.

 

Could you advise how to fix this?

Hi , @jwhk 

Thanks for your response! Can you show me your output of these actions ?In my side it looks like this.

Can you check if your total "135150" in it?

vyueyunmsft_0-1708655077882.png

 

 

Best Regards,

Yueyun Zhang

 

 

Hi @v-yueyun-msft,

 

Yes I can see 137550 in Create CSV table (see below).

jwhk_0-1708659383763.png

 

Then, it went missing after the "Condition" action, and doesn't show in the output of "Select" action.

 

jwhk_1-1708659456587.png

 

Hi , @jwhk 

Thanks for your response! Sorry , this may my mistake in the "Select" action, you need to change the expression:

vyueyunmsft_0-1708666930514.png

range(0, add( length(outputs('Run_a_query_against_a_dataset')?['body/firstTableRows']),1))

 

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft,

 

Thanks for your feedback last week. 

 

The new expression for the range() function finally fixed the missing total of [Sum of Quantity].

 

However, for another DAX queries for Dataset 1a Rows and Dataset 1b Rows, after I changed the expression on range() function, the figure of 346,100 for the total [Quantity] is showing on top of the right-hand side.

 

jwhk_2-1708907664922.png

Could you advise how to fix this issue?

Hi , @jwhk 

This is strange... Can your check if your left dataset return the total in your create csv table action?

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft,

 

Yes I can see the total in Inputs and Outputs of Create CSV table action (see the screenshot below).

jwhk_1-1708922205959.png

 

 

 

Hi, @jwhk 

So dose it caused by your dax code return the total value in your first row?

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft,

 

Refer to the screenshot below, I can see the total value (346100) in the beginning of Output of "Run a query against a dataset" action.

 

jwhk_0-1709002854752.png

I attached the DAX query in this post and see if you can find the total value is showing in the first row.

 

Hi , @jwhk 

Thanks for your quick response! Sorry for that i am not a Power BI expert🤣. You can check it in Dax Studio using this dax code so that you can see the table return from the Dax.

For more information, you can refer to :
How to Use DAX Studio for Power BI: Simplified Guide | Hevo (hevodata.com)

vyueyunmsft_0-1709003862075.png

 

Best Regards,

Yueyun Zhang

 

 

Hi @AlexEncodian,

 

Thanks for your reply 3 weeks ago.

 

Refer to Merge Excel Files – Encodian Customer Help, I have question on Step 5 for "Apply to each" and "Get file content" action. Could you tell me what is this "value" in "Select an output from previous steps" field and "Identifier" in "File Identifier" field?

jwhk_0-1709097315092.png

In my "Select An Output From Previous Steps" field, I only can choose Outputs, body/value, Body, ID, Title and Modified in the list (see below).

jwhk_1-1709097466701.png

For "File Identifier" field, it is for selecting a file from the SharePoint folder (see below). There is no "Identifier" option in the list.

jwhk_2-1709097597567.png

 

@v-yueyun-msft, do you think you can help me on this? 

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,434)