The workbook (not created by myself) have several cascading lists. B85 is dependent on G83, G83 dependent on B83, B83 is dependent on G10.
G10 and B83 work fine, and populate G83 correctly.
But depending on which option is chosen in G83, B85 may or may not populate. (specifically #s 8, 18, 19, 22, 23, 26, 28, 33, 34, 36 will populate nothing in B85).
When checking the data validation in B83:
=INDIRECT(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE($G$10, " ", "_"), "(", "_"), ")", ""), ",", "_"))
When checking data validation in G83:
The selection contains some cells without data validation settings. Do you want to extend data validation to these cells?
If yes:
=INDIRECT(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE($B83, " ", "_"), "(", "_"), ")", ""))
But if click OK:
The source currently evaluates to an error. Do you want to continue?
The data validation for B85:
=INDIRECT("_"& SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(LEFT($G$83, LEN($G$83)-1), " ", "_"), "(", "_"), ")", ""), "/", "_"))
Please help!
Solved by V. U. in 21 mins