Help Novice with query, get URL, Filter

OlderMan

New Member
Joined
Aug 28, 2016
Messages
9
I have a query to a report I created on a form website and need to filter it into reports for different people.
The table has a column "Edit Submission" which is a link. I want "Edit Submission" into the hyperlink it is on the report, and
if possible make the values in No. column the same link as the Edit Submission column links.

Here is what I have so far, but I'm not getting the links.

Code:
TABLE 0
Code:
let
    
    Source = Web.Page(Web.Contents("https://www.#/table/#")),
    Data0 = Source{0}[Data],
    #"Changed Type" = Table.TransformColumnTypes(Data0,{{"Date", type text}, {"Designing Judge", type text}, {"Approved By", type text}, {"Province", type text}, {"Host Club", type text}, {"Courses", Int64.Type}, {"Trial Date", type text}, {"Received date", type text}, {"Approved Date", type text}, {"Post-Approved", type text}, {"CAT No.", type text}, {"Edit Link", type text}}),
    #"Split Column by Position" = Table.SplitColumn(#"Changed Type", "Date", Splitter.SplitTextByPositions({0, 11}, false), {"Date.1", "Date.2"}),
    #"Removed Columns" = Table.RemoveColumns(#"Split Column by Position",{"Date.2"}),
    ExtractString = Table.AddColumn(#"Changed Type", "Link", each Text.BetweenDelimiters( "HREF=""",""""[Edit Submission])),
    IndexedWebsites = Table.AddIndexColumn(ExtractString, "Index", 0, 1), 
    CreateHyperlink = Table.ReplaceValue(IndexedWebsites, each [Edit Link] , each "'=HYPERLINK("""&[LinkConnections]&""", """&[Edit Submission]&""")" ,Replacer.ReplaceText,{"Edit Submission"}),
    #"Replaced Value" = Table.ReplaceValue(#"Removed Columns","No.","",Replacer.ReplaceText,{"CAT No."}),
    #"Renamed Columns" = Table.RenameColumns(#"Replaced Value",{{"Approved By", "Approver"}, {"Designing Judge", "Designer"}, {"Province", "Prov"}, {"Host Club", "Club"}, {"Trial Date", "Trial"}, {"Received date", "Received"}, {"Approved Date", "Approved"}, {"Post-Approved", "Post-Date"}, {"CAT No.", "No."}}),
    #"Reordered Columns1" = Table.ReorderColumns(#"Renamed Columns",{"No.", "Date.1", "Approver", "Designer", "Prov", "Club", "Courses", "Trial", "Received", "Approved", "Post-Date", "Edit Link"}),
    #"Filtered Rows" = Table.SelectRows(#"Reordered Columns1", each ([Approver] = "Anic Vermette"))
in
    #"Filtered Rows"
[COLOR=#880000][FONT=inherit]
[/FONT][/COLOR]

 
Last edited:

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Here is an image of the original table: https://photos.google.com/photo/AF1QipNDbOS4Jeq95APCVtpMBHoPlSndNiqZu0vcBFyN

Thanks Robert
AF1QipM2cw55XhlLuwtkViQ-bLXh5b5ma4aDAQ6Hqdd7
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,392
Messages
6,119,255
Members
448,879
Latest member
oksanana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top