pbi_delete_rows {powerbiR} | R Documentation |
Deletes all rows from the specified table within the specified dataset from the specified workspace (group ID). Only applicable to push datasets.
pbi_delete_rows(group_id, dataset_id, table_name)
group_id |
The Power BI workspace ID. |
dataset_id |
The Power BI dataset ID. |
table_name |
The Power BI table name. |
All rows will be deleted from the specified table.
## Not run:
group_id <- "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
dataset_id <- "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
table_name <- "My Table"
pbi_delete_rows(group_id, dataset_id, table_name)
## End(Not run)