Forum Discussion
Cannot Convert Value '' of type Text to type True/False
What is your filter that you aretrying to apply?
You have the following statement which is incompete
FILTER(Sheet1,Sheet1[Attribute])
It should be something like :
FILTER(Sheet1,Sheet1[Attribute] = "6M to 3M") but this will only show values for this attribute only
- geekmachine8115 years agoFrequent Visitor
Exactly, I want it to be dynamic because I have several fields in place
- Tahreem245 years ago
Super User
geekmachine811 try something like below:
Measure = CALCULATE(COUNT(Tbl2[Agend]),FILTER(Tbl2,HASONEFILTER(Tbl2[Attribute]))) - themistoklis5 years ago
Community Champion
- geekmachine8115 years agoFrequent Visitor
So basically, I have a Benchmark table(Table1) that contains certain values based on a Parameter (Summary Activity).
Each member(on a separate table 'Table2') needs to be benchmarked against the table above based on the count of 'Summary Activities'.
So basically I would like my formula to be 'Count of Agenda from Table2/Table1[Value]'
Note: Theres an existing relationship between Table 1 and Table 2.
Table 2 contains the names of each member plus the 'Agenda'. Agenda in this case is similar toSummary Activity.
My Filter however has to be on Table1[Attribute]