Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I built a dashboard with a csv. Now i oppened the same CSV and pasted the new data (retained the existing header) along with new columns. Total rows = 201,032. I have spent lot of time and money on this dash (hiered a freealncer to do some DAX). How do i get PBI to pick up the new columns.
NOTE: The data is being picked up when i do refersh just not the new column values. Please help
Solved! Go to Solution.
Hi @koshur. I created a csv with 3 columns, brought it into Power BI Desktop, added some columns in the Query Editor, and then added a column and measure with DAX. I went back to the source csv and added a new column, and when I refreshed I had the same issue - no new columns. But...
If you go to the Query Editor and click on the Source Applied Step, you should see something like this:
= Csv.Document(File.Contents("\\folder\subfolder\filename.csv"),[Delimiter=",", Columns=3, Encoding=1252, QuoteStyle=QuoteStyle.None])
The part that says Columns=3 is important. That's how many columns are being delimited, which will also limit how many columns can be brought in. In my example I had 3 columns, and then added 1. Once I changed the number to Columns=4, the new column came in, and worked with all of my other steps, DAX, etc. Change it to however many columns you're expecting to bring in now and you should be good!
Hi @koshur,
First within the .csv file if the data is within a table, make sure the newly added columns are apart of that same table.
If the format of the .csv file is clearly correct. You may need to change what columns are being pulled into Power BI via Power Query (the query editor).
To do this:
Under the Home Tab<Click Edit Queries< (This will take you to the query editor) on your right hand side there is "applied steps".
The first step is "Source" at this level you should see the option to import all columns.
You can also try within Query editor to click the "Choose Columns" and see if your new columns are showing up for import.
Lastly you can click "Advanded editor" and try to add that column's there or the number of columns in M. The syntax should be repeatable as seen in the M code which has been applied to the other columns.
Let me know if any of these work for you.
Christian
Thanks Christian!! Columns=9 did the trick from me. I'm excited to see how active the forum is..
Hi @koshur. I created a csv with 3 columns, brought it into Power BI Desktop, added some columns in the Query Editor, and then added a column and measure with DAX. I went back to the source csv and added a new column, and when I refreshed I had the same issue - no new columns. But...
If you go to the Query Editor and click on the Source Applied Step, you should see something like this:
= Csv.Document(File.Contents("\\folder\subfolder\filename.csv"),[Delimiter=",", Columns=3, Encoding=1252, QuoteStyle=QuoteStyle.None])
The part that says Columns=3 is important. That's how many columns are being delimited, which will also limit how many columns can be brought in. In my example I had 3 columns, and then added 1. Once I changed the number to Columns=4, the new column came in, and worked with all of my other steps, DAX, etc. Change it to however many columns you're expecting to bring in now and you should be good!
Hey @KGrice ,
Can't we do it in a dynamic way? As my column numbers will vary and if gave any max number in the query that much blank columns will get added into my table.
Thanks in advance.
Thank you! It worked for me also.
I just wanted to thank you, I was lloking for this and was getting very complicated instructions from other posts but yours is simple and worked perfectly
thanks! this worked. Although something is not right with the calculations. the % calulations seem off. I've pinged the freelancer.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
87 | |
84 | |
73 | |
49 |
User | Count |
---|---|
143 | |
131 | |
110 | |
64 | |
55 |