Created
December 17, 2019 02:42
-
-
Save Reizinixc/5e653d4c44fd2485c1460983803f6c54 to your computer and use it in GitHub Desktop.
Schedule arragement formula for Excel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Assume that the table looks like | |
// Participant \ Date | 12/21 | 12/22 | 12/23 | 12/24 | | |
// ---------------------------------------------------- | |
// A | X | | X | | | |
// B | O | | 3 | 3 | | |
// C | O | | | | | |
// D | | | | | | |
// = | X | O | X | 3 | | |
=IF(COUNTIF(B2:B6, "✕") > 0, "✕", IF(COUNTIF(B2:B6, "△") > 0, "△", "〇")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment