Edit Semantic Model - Updates a calculated column in a specified table within a Power BI dataset

Updates a calculated column in a specified table within a Power BI dataset.

put
Authorizations
Path parameters
workspaceIdstringRequired

Enter ID of the workspace for which the theme details are requested.

datasetIdstringRequired

Enter ID of an existing dataset

Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Body

Represents a model for defining a calculated column in a Power BI dataset.

tableNamestring | nullableOptional

The name of the table in which the calculated column will be created.

calculatedColumnExpressionstring | nullableOptional

The DAX expression that defines the calculated column.

calculatedColumnNamestring | nullableOptional

The name of the calculated column to be created.

Responses
200

Success: The calculated column was added or updated successfully.

No content

put
PUT /workspace/{workspaceId}/dataset/{datasetId}/column HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 86

{
  "tableName": "text",
  "calculatedColumnExpression": "text",
  "calculatedColumnName": "text"
}

No content

Last updated