Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in BI by (11.1k points)
edited by

How can we overcome the PowerBi export limit?

1 Answer

0 votes
by (22.5k points)
edited by

Follow the measure to generate the measure for 201k Rows

let
    Source = List.Generate(()=>1, each _ < 201001, each _ + 1),
    #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error)
in
    #"Converted to Table"

With R integration Place the following code

library(RODBC)
conn <- odbcDriverConnect("driver=SQL Server;server=.\\SQLEXPRESS;Database=MyDataBase")
odbcClearError(conn)
sqlSave(conn, dataset, tablename="MyR_table",rownames=FALSE, safer=FALSE, append=FALSE) close(conn) 

 If you want to learn more about Power BI then read Power BI Tutorial. Also, enroll in Power BI Training to become proficient in this BI tool.

You should also watch this video tutorial on Power BI:

Related questions

0 votes
1 answer
0 votes
1 answer
asked Jan 24, 2021 in BI by Chris (11.1k points)
0 votes
1 answer
asked Dec 26, 2020 in BI by Chris (11.1k points)
0 votes
1 answer
0 votes
1 answer
asked Dec 21, 2020 in BI by Chris (11.1k points)

Browse Categories

...