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
8 years agoSuper User
Hi,
Assuing you have selected a certain month in the FIlter/slicer, try this
=COUNTROWS(TourTbl)/MAX(TourTbl[WorkingDaysInMonth])
Hope this helps.