Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Solved! Go to Solution.
Hi @NISH72,
use the function Table.SelectRows.
Example:
let
Source = #table(
{"SalesID", "Sales", "Comment"},
{
{1, 778, "Good"},
{2, 675, null}
}
),
Result = Table.SelectRows(Source, each [Comment] <> null)
in
Result
Hi @NISH72,
use the function Table.SelectRows.
Example:
let
Source = #table(
{"SalesID", "Sales", "Comment"},
{
{1, 778, "Good"},
{2, 675, null}
}
),
Result = Table.SelectRows(Source, each [Comment] <> null)
in
Result
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 9 | |
| 8 | |
| 7 | |
| 6 |