AVERAGE without including empty rows

I need the average of both columns "Gimkit 1" and Gimkit 2, however certain rows are empty due to students being absent to class.

The average generated for each student included the empty rows which lowers the total average for each student because for their absent days the formula considered the marks as 0%

How do I solve this problem?

Any help will be greatly appreciated ๐Ÿ˜€

Screenshot 2022-05-27 at 12.37.03 PM.png

Solved Solved
0 1 55
1 ACCEPTED SOLUTION

If you know how to identify rows that should be excluded (or what should be included) then you can AND that condition with the Student name restriction.

SELECT(table[col],
 AND( 
  [St Name] = [_THISROW].[St Name],
  << your additional condition here>>
 )
)

 

View solution in original post

1 REPLY 1

If you know how to identify rows that should be excluded (or what should be included) then you can AND that condition with the Student name restriction.

SELECT(table[col],
 AND( 
  [St Name] = [_THISROW].[St Name],
  << your additional condition here>>
 )
)

 

Top Labels in this Space