Forum Discussion
Anonymous
8 years agoNot applicable
Specify a number from a column
Hi, I would like to choose a number from a column (WorkingDaysIn Month) in order to use it as a divisor. How can I do it? TourRunrate = CALCULATE(COUNTROWS(TourTbl)) / *divisor*
Ashish_Mathur
Super User
8 years agoHi,
Assuing you have selected a certain month in the FIlter/slicer, try this
=COUNTROWS(TourTbl)/MAX(TourTbl[WorkingDaysInMonth])
Hope this helps.