I am currently using SMALL(IF( and this is a function I am not super familiar with. I would like to exclude a return if a cell contains a certain value and I think I need an embedded IF somewhere, but am not sure where to put it. See below:
This is my current function and I would like to not return values if tab XRD has the value of WS in column B.
=IFERROR(INDEX(XRD!$C$2:$C$4031, SMALL(IF($A345=XRD!$B$2:$B$10000, ROW(XRD!$B$2:$B$10000)-MIN(ROW(XRD!$B$2:$B$10000))+1, ""), COLUMNS($A$1:C344))),"")
I believe I need something like this, but am just a bit lost at the moment.
=IFERROR(INDEX(XRD!$C$2:$C$4031, SMALL(IF($A345=XRD!$B$2:$B$10000(IF(XRD!$B$2:$B10000='WS',"",XRD!$B$2:$B10000), ROW(XRD!$B$2:$B$10000)-MIN(ROW(XRD!$B$2:$B$10000))+1, ""), COLUMNS($A$1:C344))),"")
I have another place I could exclude also, where I would just need to ignore WS in column Day 1 XRD. See Below:
=IFERROR(INDEX(XRD!$I$2:$I$1000055,MATCH(1,(XRD!$B$2:$B$1000055=[@Board])*(XRD!$C$2:$C$1000055=[@[Day 1 XRD]]),0)),"")
Any help would be appreciated.
This is my current function and I would like to not return values if tab XRD has the value of WS in column B.
=IFERROR(INDEX(XRD!$C$2:$C$4031, SMALL(IF($A345=XRD!$B$2:$B$10000, ROW(XRD!$B$2:$B$10000)-MIN(ROW(XRD!$B$2:$B$10000))+1, ""), COLUMNS($A$1:C344))),"")
I believe I need something like this, but am just a bit lost at the moment.
=IFERROR(INDEX(XRD!$C$2:$C$4031, SMALL(IF($A345=XRD!$B$2:$B$10000(IF(XRD!$B$2:$B10000='WS',"",XRD!$B$2:$B10000), ROW(XRD!$B$2:$B$10000)-MIN(ROW(XRD!$B$2:$B$10000))+1, ""), COLUMNS($A$1:C344))),"")
I have another place I could exclude also, where I would just need to ignore WS in column Day 1 XRD. See Below:
=IFERROR(INDEX(XRD!$I$2:$I$1000055,MATCH(1,(XRD!$B$2:$B$1000055=[@Board])*(XRD!$C$2:$C$1000055=[@[Day 1 XRD]]),0)),"")
Any help would be appreciated.