Forum Discussion
Dreaded Placeholder error
- 3 years ago
Hi aashton
CALCULATE filters are tables. It is trying to identify which table is supposed to be filtered based on the provided measure value but your code identifies none. You need to manually tell the engine which table do you mean to filter. However, using CALCULATE in this case is not recommended. You may try
COUNTROWS (
FILTER (
VALUES ( 'CRM Sharepoint'[CRM_Account_Name] ),
[Current Vacancy] = 1
)
)
Hi aashton
CALCULATE filters are tables. It is trying to identify which table is supposed to be filtered based on the provided measure value but your code identifies none. You need to manually tell the engine which table do you mean to filter. However, using CALCULATE in this case is not recommended. You may try
COUNTROWS (
FILTER (
VALUES ( 'CRM Sharepoint'[CRM_Account_Name] ),
[Current Vacancy] = 1
)
)
- aashton3 years ago
Helper V
Thank you so much!!!