Hi guys!

Is there a way to read a shared text file hosted on my OneDrive cloud account?
Is there another cloud service that allows this?

I've tried something like:

      text_file = "https://1drv.ms/t/s!AhalvoNcBxGGlFLKQmtqXgx49usM" '' this is the actual link

             Open text_file For Input As #1
        
        Do Until EOF(1)
            Line Input #1, textline
            .InsertLines LineNum, textline
            LineNum = .CountOfLines + 1
        Loop
        Close #1
but I get 'Run-time 52: Bad file name or number '

Thanks a bunch!!