Hello Community,
I am having an issue with a COUNTA forumala..I successsfully have as follows:
Created Quotes =
CALCULATE(
COUNTA(quotes[_createdby_value]),
FILTER(
ALL(quotes),
quotes[_createdby_value] =
'Quotes Model'[systemusers]))
I need basically recreate this, but limit the count to whether or not a column in the quotes table is "False". So something similar to the below:
Created Quotes w/ Opportunity =
CALCULATE(
COUNTA( quotes[_createdby_value] ),
FILTER( quotes, [Opportunity T/F] = FALSE() ))
quotes[_createdby_value] = 'Quotes Model'[systemusers]))
)
Any idea on how to get