pbi_delete_rows {powerbiR}R Documentation

Delete rows

Description

Deletes all rows from the specified table within the specified dataset from the specified workspace (group ID). Only applicable to push datasets.

Usage

pbi_delete_rows(group_id, dataset_id, table_name)

Arguments

group_id

The Power BI workspace ID.

dataset_id

The Power BI dataset ID.

table_name

The Power BI table name.

Value

All rows will be deleted from the specified table.

Examples


## 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)

[Package powerbiR version 0.1.0 Index]