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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
PaulMoses
Helper I
Helper I

Fill table in the data model with data from table created in the data view(not present in data model

Hi All

I have 2 tables : one that I have created in Data View, by the option "New table" (and so, it is not in the data model), and another created in Power Query. I would like to populate the second one with data from the first. There is no relationship between the 2 tables. I have searched in the topics in the forum, but none of them helped me.

Could someone tell me how to proceed ?

Thanks in advance.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Yes, DAX ahs access to both kind of tables. You can use DAX to join them or UNION them as you want.

 

Thanks

Raj

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @PaulMoses

 

You can create DAX calculated table with the values from your origina Power Query table.

 

Say for ex, you have Table 1 from Query, country , city, sales are the columns.

 

Now you want to createa  DAX table and populate the DAX table from the values of Table 1 and only for USA country.

 

So, your DAX table formula should be ( Go to Modelling -> New Table) :

 

DAX Table = FILTER ( Table1, Table1[Country] = "USA")

 

This is just an example, you can write complex formulas as well.

 

Hope this is what you are looking for.

 

Thanks
Raj

Hi @Anonymous

Thank you a lot for you proposal.

But, in fact, my 2 tables already exist (I already have a DAX table). I would like to copy the data from the DAX table, to a table that I created in the Power Query. Another thing is that I would like to copy all the DAX table, without filtering.

Thank in advance.

 

Anonymous
Not applicable

Hi @PaulMoses

 

PFB my response.


@PaulMoses wrote:

Hi @Anonymous

Thank you a lot for you proposal.

But, in fact, my 2 tables already exist (I already have a DAX table). I would like to copy the data from the DAX table, to a table that I created in the Power Query. *** This is not possible, whatever you created in DAX wont appear in the power Query, DAX remains in the model.***

 

Another thing is that I would like to copy all the DAX table, without filtering. *** This you can do. You can join them, UNION them as you want ***

Thank in advance.

 


 Thanks

Raj

Hi @Anonymous

Thank again for your response.

But, even if tables that were created in DAX can not be seen in Power Query, I would like to know if it can be possible to use DAX for adressing this issue. I mean this : does DAX have access to tables in the data model ? If yes, is there any possibility to copy data to a table in the data model with DAX formulas ?

Thank a lot for helping.

Anonymous
Not applicable

Yes, DAX ahs access to both kind of tables. You can use DAX to join them or UNION them as you want.

 

Thanks

Raj

Hello @Anonymous

 

Thank you very much for your help.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors