Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

Export the result of the dax as a new table

Hello

I have some data and have built many DAX measures for different analyses on them. I want to export the results of my measurements to a new table monthly. The following is an example of a simple job:

raw data

DateSale
2020-01-151
2020-01-195
2020-01-212
2020-01-294
2020-02-012
2020-02-042
2020-02-063
2020-02-145
2020-02-191
2020-02-252
2020-03-016
2020-03-051
2020-03-104
2020-03-205
2020-03-252
2020-04-013
2020-04-102
2020-04-154
2020-04-192
2020-04-259

Now, imagine that I have a DAX measure to add the sale per month (SUM(raw[sale]). I want to generate the result of this measure in a new table and each row represents one month (for example, the start of the month is good for me):

output table

start of the monthsum of sale
2020-01-0112
2020-02-0115
2020-03-0118
2020-04-0120

All the measures I want to examine monthly can be added to each column in this table.

How do I do that export in a new table?

Thank you.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Syndicate_Admin , Try two table

Table 3 = SELECTCOLUMNS('Table',"Month", EOMONTH([date],-1)+1, "sale",'Table'[sale])

Table 4 = SUMMARIZE('Table 3','Table 3'[Month],"sales",SUM('Table 3'[sale]))

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Syndicate_Admin , pbix with date table . Table 2 ( From Table and Date) 

amitchandak
Super User
Super User

@Syndicate_Admin , Try two table

Table 3 = SELECTCOLUMNS('Table',"Month", EOMONTH([date],-1)+1, "sale",'Table'[sale])

Table 4 = SUMMARIZE('Table 3','Table 3'[Month],"sales",SUM('Table 3'[sale]))

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.