Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in BI by (11.1k points)
How can I over come the Power Bi export limit to 150k rows?

1 Answer

0 votes
by (22.5k points)

Use the following measure

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"
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) 

Want to learn more about Power Bi, Refer: Power Bi Training    

Related questions

0 votes
1 answer
asked Dec 13, 2020 in BI by Chris (11.1k points)
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
asked Dec 21, 2020 in BI by Chris (11.1k points)
0 votes
1 answer

Browse Categories

...