Training
Module
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Html.Table(html as any, columnNameSelectorPairs as list, optional options as nullable record) as table
Returns a table containing the results of running the specified CSS selectors against the provided html
. An optional record parameter, options
, may be provided to specify additional properties. The record can contain the following fields:
RowSelector
Returns a table from a sample html text value.
Usage
Html.Table("<div class=""name"">Jo</div><span>Manager</span>", {{"Name", ".name"}, {"Title", "span"}}, [RowSelector=".name"])\
Output
#table({"Name", "Title"}, {{"Jo", "Manager"}})
Extracts all the hrefs from a sample html text value.
Usage
Html.Table("<a href=""/test.html"">Test</a>", {{"Link", "a", each [Attributes][href]}})
Output
#table({"Link"}, {{"/test.html"}})
Training
Module
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.