I am pulling invoice numbers dynamically. I am matching a site ID but there are multiple entries for some of them. If I use this formula it works perfectly:
=INDEX(COLLECT({[1.] Hidden Master Schedule Range 1}, {[1.] Hidden Master Schedule Range 3}, {[1.] Hidden Master Schedule Range 2}, [Site ID:]@row), 1)
The only problem with this is that is always pulls the 1st invoice number. If I use the following formula I get an #INVALID DATA TYPE error.
=INDEX(COLLECT({[1.] Hidden Master Schedule Range 1}, {[1.] Hidden Master Schedule Range 3}, MONTH(@cell) = 8, {[1.] Hidden Master Schedule Range 2}, [Site ID:]@row), 1)
Thank you in advance.