Forum Discussion

1 Reply

  • 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