How to correctly put share point link to the Power Query to get the excel file [closed] - powerbi

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
How to correctly put share point file path here to use it further ?
it is in the first (Source ) step, so I tried to watch some advices but it didn't work. How can I connect excel file from sharepoint in my Power Query Source step?

Related

Why is the Fetch next or fetch forward not working for cursor in redshift procedure? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 days ago.
Improve this question
Why is the Fetch next or fetch forward not working for cursor in redshift procedure ? gives the below error

How to Extract Text from a String in Google Sheets [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have text that needs to be extracted from a string into certain cells based on guide text within the string.
I have tried using various methods but these methods do not typically function when guide text is moved or missing which can occur with the input process.
https://docs.google.com/spreadsheets/d/1eNXa0tTzYVXVrapc8mt-V83PrkKDZwEXp1EQMYGmsRU/edit?usp=sharing
The result should output the correct data text following the guide text.
=ARRAYFORMULA(IFERROR({
INDEX(SPLIT(REGEXEXTRACT(A2:A&"(", "\(1\)(.+)\("), "("),,1),
INDEX(SPLIT(REGEXEXTRACT(A2:A&"(", "\(2\)(.+)\("), "("),,1),
INDEX(SPLIT(REGEXEXTRACT(A2:A&"(", "\(3\)(.+)\("), "("),,1)}))

How to access csv file data in django? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want a webpage in django that accepts csv file from the user and need to process that data.could you please help me
http://docs.python.org/library/csv.html
Python has builtin library to parsing csv file and process data of csv file according to your logic

How to read excel file in emberjs [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am making a desktop app using ember.js and electron. I need to read data from excel file.
Can anyone give me simple code snippet for this? Are there any external libraries for this purpose?
You can use js-xlsx. Add it as bower dependecy and add its imports to your ember-cli-build file as:
app.import('bower_components/js-xlsx/dist/jszip.js');
app.import('bower_components/js-xlsx/dist/xlsx.min.js');
Handle it as the documentation's parsing-workbooks section shows. (handleFile function is explaining it well.)

Edit and Update data for specific row/column of csv file MFC [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How to edit and update data in csv file MFC. I am able to read data from csv file using ReadString().
void ModifyCSVFile(){
.....
}
After you ReadString(), you modify it to your liking and write to another file using WriteString(). When you are done, delete the original file and rename the new one.
If you simply want to replace some symbols with the same number of different symbols, you can do that in place.