Forum Discussion
Formula Help
- Anonymous6 years ago
erhan_79 Please create a table with as per below
Table = VAR _table = TOPN(3,SUMMARIZECOLUMNS(Test[Vendor Name],"CountOfVendor",COUNT(Test[Vendor Name])),[CountOfVendor],DESC) VAR _top3 = SELECTCOLUMNS(_table,"Vendor Name",Test[Vendor Name],"Top number of vendor",RANKX(_table,[CountOfVendor])) RETURN _top3 - Anonymous6 years ago
erhan_79 Please filter out the blank cells before counting. Replace
COUNT(Test[Vendor Name]) with below formula
CALCULATE(COUNT(Test[Vendor Name]),FILTER(Test,Test[Vendor Name]<>BLANK()))
erhan_79 Please create a table with as per below
Table =
VAR _table = TOPN(3,SUMMARIZECOLUMNS(Test[Vendor Name],"CountOfVendor",COUNT(Test[Vendor Name])),[CountOfVendor],DESC)
VAR _top3 = SELECTCOLUMNS(_table,"Vendor Name",Test[Vendor Name],"Top number of vendor",RANKX(_table,[CountOfVendor]))
RETURN _top3- erhan_796 years agoPost Prodigy
Anonymousdear ;
thanks for your reply
i need one more your help , when there are blanks cells , formula counts that blanks cells too, how can we stop to count blank cells for Vendor Name column
- Anonymous6 years agoNot applicable
erhan_79 Please filter out the blank cells before counting. Replace
COUNT(Test[Vendor Name]) with below formula
CALCULATE(COUNT(Test[Vendor Name]),FILTER(Test,Test[Vendor Name]<>BLANK()))- erhan_796 years agoPost Prodigy
Anonymous dear ;
may i ask one more help pls , this is last one 🙂
i would like to not care the lines for this calculating which named material column includes "DMG" letters.While calculating , formula will not consider which material cell includes "DMG" letters , this DMG code can be variable with numbers but "DMG"letters are fixed.
without "DMG" letters included lines will be calculated.
Could you help me about that pls
thanks in advance for your kind supports