Forum Discussion
Graphing data on chart
Hey!
Thanks for your help. It looks like both formulas (table and column) isn't filtering the data as needed. Its still showing data which only has company 1 info. Whereas i would like to only present account and revenue info for accounts are purchasing from both company 1 and company 2.
Is there a way to create a column where it looks at the account name column and then sees if this account has both company 1 and company 2 listed under the company column. If yes, the column will return a "true", if not it will be blank?
pls try this
Column = if(CALCULATE(COUNTROWS('Table'),ALLEXCEPT('Table','Table'[account name]))>1,"True",BLANK())
- orana5 years agoHelper I
I think i see your logic. I think the image below is a better presentation of my data. Based on the code above, i added a true column. You can see that the yellow highlighted column would also yield a true even though it only has c1 listed under company. Is there a way to develop a formula such that only account 1 would appear