Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hello everyone. I want get number from random.org randomly generated numbers in excel. How i can do it?
Hi @DMT_corp ,
Try this:
let
Source =
Table.FromColumns(
{
Lines.FromBinary(
Web.Contents("https://www.random.org/integers/?num=10&min=1&max=6&col=1&base=10&format=plain&rnd=new"),
null,
null,
65001
)
}
)
in
Source
Where parameters are as follows:
Pete
Proud to be a Datanaut!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.