Cheat Sheets/Power Apps/Table
Power Fx function

TablePower Fx function reference

Build an inline table.

Syntax

powerfx
Table( Record1 [, Record2, ... ] )

Examples

powerfx
Table({n: 1}, {n: 2})
Two-row table
powerfx
Table({Label: "Q1", Value: 100}, {Label: "Q2", Value: 150})
powerfx
ClearCollect(colStatusOptions, Table({Status: "Open"}, {Status: "In Progress"}, {Status: "Closed"}))

Common mistakes & gotchas

Related Power Fx functions

From Table shaping

Used in these tutorials

← Back to the Power Apps (Power Fx) cheat sheet