diff --git a/powerbi-docs/developer/visuals/dataview-mappings.md b/powerbi-docs/developer/visuals/dataview-mappings.md index fcc0d2ac9a..488a49b5d2 100644 --- a/powerbi-docs/developer/visuals/dataview-mappings.md +++ b/powerbi-docs/developer/visuals/dataview-mappings.md @@ -72,15 +72,18 @@ You can also set multiple conditions for a data role. In that case, the data is ```json "conditions": [ - { "category": { "min": 1, "max": 1 }, "measure": { "min": 2, "max": 2 } }, - { "category": { "min": 2, "max": 2 }, "measure": { "min": 1, "max": 1 } } + { "category": { "min": 1, "max": 1 }, "measure": { "min": 0, "max": 2 } }, + { "category": { "min": 2, "max": 2 }, "measure": { "min": 0, "max": 1 } } ] ``` In the previous example, one of the following two conditions is required: -* Exactly one category field and exactly two measures -* Exactly two categories and exactly one measure +* Exactly one category field and no more than two measures +* Exactly two categories and no more than one measure field + +> [!NOTE] +> Only one data role can have a minimun value of ≥ 1 per condition. ## Single data mapping