Hi All!
I am struggling to figure out how to automate the need to create multiple formulas. My current data looks as follows:
Project | SIGNAL A | SIGNAL B | SIGNAL C |
A | 1 | 0 | 1 |
B | 0 | 0 | 0 |
C | 1 | 0 | 1 |
D | 1 | 0 | 0 |
I will need to create multiple formulas for each 'Signal'. For example if I was to do this manually I would created the following formulas for Project A:
1) "SIGNAL AB" = If [SIGNAL A]+[SIGNAL B]=2 THEN 1 ELSE 0
2) "SIGNAL AC" = If [SIGNAL A]+[SIGNAL C]=2 THEN 1 ELSE 0
3) "SIGNAL ABC" = If [SIGNAL A]+[SIGNAL B]+[SIGNAL C]=3 THEN 1 ELSE 0
I need to repeat this for each project and each 'Signal' Test. Is there a simple way to set this up with a Macro?
Any help would be much appreciated!!