Skip to content

Instantly share code, notes, and snippets.

@Reizinixc
Created December 17, 2019 02:42
Show Gist options
  • Save Reizinixc/5e653d4c44fd2485c1460983803f6c54 to your computer and use it in GitHub Desktop.
Save Reizinixc/5e653d4c44fd2485c1460983803f6c54 to your computer and use it in GitHub Desktop.
Schedule arragement formula for Excel
// 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