Share via

Tickmarks

Anonymous
2025-01-16T17:31:03+00:00

I have an excel sheet. I have checkboxes in individual cells. Each day has 3 checkmarks under it but i only want the user to be able to put 1 tick mark in the sheet. After a tick mark is added, the other checkmarks need to gray out. But, it has to be where the user can uncheck that tick mark and choose another option.

I dont know how to write code for VMA. So is there an easier solution to make this work?

Microsoft 365 and Office | Excel | For business | Windows

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

Answer accepted by question author

Anonymous
2025-01-17T03:03:16+00:00

Could you share a screenshot of your data validation rule?

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

Answer accepted by question author

Anonymous
2025-01-16T18:11:24+00:00

You may try data validation to limit the checkbox.

Select B2:E4

Data validation rule>Custom>

=SUM(--B$2:B$4)<=1

The rule will limit the checkbox to only one for one column. You will need to uncheck exist one to check another checkbox.

Image

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

5 additional answers

Sort by: Most helpful
  1. Anonymous
    2025-01-17T02:44:16+00:00

    I tried it that way, only using 1 day. It somewhat works if you select fail first, but if you select the other 2 options, it allows you to still add tick marks. Is there an embedded code in that sheet that is preventing it from working?

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2025-01-17T02:32:38+00:00

    You should select day by day to apply data validation.

    Select G11:I26

    Apply this rule.

    =Sum(--$G11:$I11)<=1

    Then select day 2 range

    =Sum(--$J11:$L11)<=1

    ...

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2025-01-16T18:31:20+00:00

    Thanks, but it isn't working for me. When I put the formula in, it works for the 2nd and 3rd column. But, if I check the first column first, i can still put tick marks in the 2nd and 3rd. Another thing I noticed was that the formula is changing on me. Is there something wrong with my format?

    working copy of progress report.xlsx

    Was this answer helpful?

    0 comments No comments