Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago

Sorting out file location

I have inherited a couple of Power BI reports that need to be updated and they reference a file, that is listed below, in Power Query Editor.  Is there anyway to sort out the file path and name from this?

let

    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("nVpbc6M6Ev4rrnmaqcrscgc/Jk7inNzGG2eT2p05DzLIRsdY8kqQHPvXb7cExBBDyDwNpNxq9e3rr5v5+fPL9y8nX+5FPjpViq04Tdqvf578/HK6plKdjK6J2jBOR19dJ/C98fgb/PaKkoTx1T9H81jS15ENf/pXQTKW74xkRv8mPKHy…{Continues on for another page}", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Name = _t, BU = _t, Department = _t]),

    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"BU", type text}, {"Department", type text}})

in

    #"Changed Type"

3 Replies

    • Anonymous's avatar
      Anonymous
      Not applicable

      Clicking on the gear only brings up the Create Table window. Not other options are available.