First sheet is SUMMARY1, summary information pulled in w/MS Query:
Press No.
1 (cell A2)
2 (cell A3)
3 (cell A4)
4 (cell A5)
5 (cell A6)
6 (cell A7)
7 (cell A8)
8 (cell A9)
Second sheet references first sheets info as follows:
=IF(summary!A2<>"",summary!A2,"")
=IF(summary!A3<>"",summary!A3,"")
=IF(summary!A4<>"",summary!A4,"")
=IF(summary!A5<>"",summary!A5,"")
=IF(summary!A6<>"",summary!A6,"")
=IF(summary!A7<>"",summary!A7,"")
=IF(summary!A8<>"",summary!A8,"")
=IF(summary!A9<>"",summary!A9,"")
The data returned should be:
Press No.
1
2
3
4
5
6
7
8
Instead the data returned is
Press No.
1
2
3
4
8
For the data returned the logic for press 4 says =IF(summary!A5<>"",summary!A5,""). The logic for the very next row shows to be =IF(summary!A9<>"",summary!A9,"") - it completely skips =IF(summary!A6<>"",summary!A6,""),
=IF(summary!A7<>"",summary!A7,""),=IF(summary!A8<>"",summary!A8,"")rows altogether.
Any ideas what could cause this??
Many thanks!
Press No.
1 (cell A2)
2 (cell A3)
3 (cell A4)
4 (cell A5)
5 (cell A6)
6 (cell A7)
7 (cell A8)
8 (cell A9)
Second sheet references first sheets info as follows:
=IF(summary!A2<>"",summary!A2,"")
=IF(summary!A3<>"",summary!A3,"")
=IF(summary!A4<>"",summary!A4,"")
=IF(summary!A5<>"",summary!A5,"")
=IF(summary!A6<>"",summary!A6,"")
=IF(summary!A7<>"",summary!A7,"")
=IF(summary!A8<>"",summary!A8,"")
=IF(summary!A9<>"",summary!A9,"")
The data returned should be:
Press No.
1
2
3
4
5
6
7
8
Instead the data returned is
Press No.
1
2
3
4
8
For the data returned the logic for press 4 says =IF(summary!A5<>"",summary!A5,""). The logic for the very next row shows to be =IF(summary!A9<>"",summary!A9,"") - it completely skips =IF(summary!A6<>"",summary!A6,""),
=IF(summary!A7<>"",summary!A7,""),=IF(summary!A8<>"",summary!A8,"")rows altogether.
Any ideas what could cause this??
Many thanks!