Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
say I have Get Data from CSV, and loaded into the Power BI.
say next time, I need to add in a few more columns, do I need to remove that table and redo everything again?
Can I if Refresh data, it will add in those new columns, without me remove that table loaded previously?
Solved! Go to Solution.
Hi @Anonymous ,
There are several ways you can add columns to your already loaded query.
Via Power Query using 'M' - you can use the Custom Column and build your custom column.
Via Power BI Desktop using DAX - you can create a calculated column.
Based on your requirement and level of familiarity with either languages you can add columns accordingly. DAX is generally more familiar to excel users, while M is more familiar with C # users.
Hope this helps, please give thumbs up and Mark my answers as solution for your question. Thanks!
Hi @Anonymous ,
Csv.Document has the following syntax
Csv.Document(source as any, optional columns as any, optional delimiter as any, optional extraValues as nullable number, optional encoding as nullable number)
As indicated in the syntax, optional columns is optional so the M-Script below can be written without the Column parameter.
= Csv.Document(File.Contents("complete path"),[Delimiter=",", Columns=5, Encoding=65001, QuoteStyle=QuoteStyle.None])
= Csv.Document(File.Contents("complete path"),[Delimiter=",", Encoding=65001, QuoteStyle=QuoteStyle.None])
I did several tests and the data previews looked fine without the Column parameter.
Proud to be a Super User!
Hi @Anonymous ,
I have faced this before. It is important to understand that Power BI has different methods in which it internally gets data from different sources like csv, SQL Server, DBs etc.
For the csv, if you have new columns created AFTER you completed the first load into Power BI, your refreshing of the query or the dataset will NOT reflect those new columns.
Why? beause in the first / initial load of the csv files, the connection will be written to include a 'Column' count. You can check this in the Advanced Editor. You can change that value to new count of columns you have in your csv to get in the new columns of your csv data file.
Run Refresh after changing the advanced editor query and you will be able to 'refresh' your csv power bi table with the newly added columns.
Hope this helps, please give thumbs up if it did. Thanks!
I have to add in Column by Index and rename that column. Thanks.
I know there is Add Column in Power Query Editor, but what if I want to add in new column which is just another new column that is not related to another other columns?
Hi @Anonymous ,
There are several ways you can add columns to your already loaded query.
Via Power Query using 'M' - you can use the Custom Column and build your custom column.
Via Power BI Desktop using DAX - you can create a calculated column.
Based on your requirement and level of familiarity with either languages you can add columns accordingly. DAX is generally more familiar to excel users, while M is more familiar with C # users.
Hope this helps, please give thumbs up and Mark my answers as solution for your question. Thanks!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
102 | |
99 | |
38 | |
37 |
User | Count |
---|---|
158 | |
125 | |
76 | |
74 | |
63 |