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
bcharlto
Frequent Visitor

Turning table visual into data table that I can join to

I have created a table visual that has columns from my original query, but also includes a measure that I want to be able to join back to my original query. Can I create a Data Table from a Table Visual?

 

Table Visual:

Item: From Query1

Store: From Query1

Week_Ending: From Query1

AvgPrice: sum(Query1[$Sales] )/sum(Query1[UnitSales]

RegularPrice = calculate(MAX(Query1[AvgPriceCol]),datesinperiod(Query1[Week_Ending],lastdate(Query1[Week_Ending]),-84,DAY))

*AvgPriceCol is a column from Query1 and is the same result as AvgPrice

 

 

I want to join RegularPrice back to Query1 and have the join based on Item, Store, and Week_Ending, however it's just a table visual right now...

1 ACCEPTED SOLUTION
v-sihou-msft
Employee
Employee

@bcharlto

 

If you want to make RegularPrice to be a calculated column in Query1 table, you can use following formula.

 

RegularPrice_Column = 
CALCULATE (
    MAX ( Query1[AvgPriceCol] ),
    FILTER (
        Query1,
        Query1[Item] = EARLIER ( Query1[Item] )
            && Query1[Store] = EARLIER ( Query1[Store] )
    ),
    DATESINPERIOD ( Query1[Week_Ending], LASTDATE ( Query1[Week_Ending] ), -84, DAY )
)

357.jpg

You can use R scripts to export data from power bi back to SQL, please refer to links below:

http://www.thebiccountant.com/2015/12/28/how-to-export-data-from-power-bi-and-power-query/ http://stackoverflow.com/questions/19190744/how-to-quickly-export-data-from-r-to-sql-server

 

*Note: R visuals in Power BI Desktop has a few limitations.

  1. Data size limitations – data used by the R visual for plotting is limited to 150,000 rows. If more than 150,000 rows are selected, only the top 150,000 rows are used and a message is displayed on the image.
  2. Calculation time limitation – if an R visual calculation exceeds 5 minutes the execution times out, resulting in an error.

 

If you want to export visual report data to .csv file. You can select the ellipses in the top right corner of the visualization and choose the Export data icon.

*Note: 30,000 rows is the limitation for exporting visual report data to .csv file.

 

Regards,

View solution in original post

2 REPLIES 2
v-sihou-msft
Employee
Employee

@bcharlto

 

If you want to make RegularPrice to be a calculated column in Query1 table, you can use following formula.

 

RegularPrice_Column = 
CALCULATE (
    MAX ( Query1[AvgPriceCol] ),
    FILTER (
        Query1,
        Query1[Item] = EARLIER ( Query1[Item] )
            && Query1[Store] = EARLIER ( Query1[Store] )
    ),
    DATESINPERIOD ( Query1[Week_Ending], LASTDATE ( Query1[Week_Ending] ), -84, DAY )
)

357.jpg

You can use R scripts to export data from power bi back to SQL, please refer to links below:

http://www.thebiccountant.com/2015/12/28/how-to-export-data-from-power-bi-and-power-query/ http://stackoverflow.com/questions/19190744/how-to-quickly-export-data-from-r-to-sql-server

 

*Note: R visuals in Power BI Desktop has a few limitations.

  1. Data size limitations – data used by the R visual for plotting is limited to 150,000 rows. If more than 150,000 rows are selected, only the top 150,000 rows are used and a message is displayed on the image.
  2. Calculation time limitation – if an R visual calculation exceeds 5 minutes the execution times out, resulting in an error.

 

If you want to export visual report data to .csv file. You can select the ellipses in the top right corner of the visualization and choose the Export data icon.

*Note: 30,000 rows is the limitation for exporting visual report data to .csv file.

 

Regards,

Wow! This is amazing!! Thank you! I have 14 million rows. Works like a charm!

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.