ANOVA with Two-Factor Without Replication - Contains non-numeric data

Anonymous
2023-07-17T18:24:54+00:00

Hello,

I am trying to run a ANOVA with two-factor without replication, however, I keep getting this alert that my input contains non-numeric data. I have tried to format it as a number and by using the text to column function but nothing seems to work. I do have data missing in my table but there is at least one values in each row (so I should be okay). I looking to find the ICC therefore I need the ANOVA information to do so. Please help.

Microsoft 365 and Office | Excel | For education | MacOS

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
{count} votes

14 answers

Sort by: Most helpful
  1. Anonymous
    2023-07-18T19:10:40+00:00

    Add zero to blank cells. Then it will work.

    0 comments No comments
  2. Anonymous
    2023-07-18T20:22:53+00:00

    The ANOVA "rows sum of squares" calculation involves matrix multiplication and for this it requires data in all cells. Here is a formula equivalent calculation:

    =SUMSQ(MMULT(E4:H11,ROW(1:4)^0))/COUNT(E4:H4)-SUM(E4:H11)^2/COUNT(E4:H11)

    The problem lies in the MMULT(E4:H11,ROW(1:4)^0) portion which evaluates to #VALUE!

    This is interesting because you can calculate the internal components and MMULT will make a calculation and the whole formula will return a result. However,

    Microsoft say: MMULT returns the #VALUE! error when:

    • Any cells are empty or contain text
    • ....

    hence our ANOVA calculation fails.

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2023-07-18T21:15:49+00:00

    To use Excel's Analysis ToolPak "Two-Factor ANOVA without Replication" you need an observed value for each combination of the two factors.

    You have useful values only for the row effect Competition 1,2,3,4 and column effect Person 1,3,4,7,8,10, i.e., 4 rows by 6 columns.

    If you rearrange your data and include labels, your input range will be five rows by seven columns (with an empty cell in the top left corner), e.g., A1:G5.

    0 comments No comments
  4. Anonymous
    2023-07-18T22:33:42+00:00

    Will this affect the value of the output? I don't want it to affect the overall output the blank cell really just represents an n/a.

    0 comments No comments
  5. Anonymous
    2023-07-18T22:36:33+00:00

    Hi Michael,

    The only problem is I need to have all the values in the input because in the end I am looking for intraclass correlation to see if they are nested of not within each team. Is there any way to do that?

    0 comments No comments