Forum Discussion
MattRaw
Dec 16, 2024Copper Contributor
Help needed to link IF functions into 1 cell
Hi All, I have a tracker spreadsheet that upon entering dates into cells, there is a calendar section at the end where the dates populate into there in the forms of numbers - which are then conditi...
- Dec 19, 2024
That is what I sort of thought and mentioned in my reply all you have to do is remove that last line of the equation:
=ROUND(IFERROR( (--L$3>$A$4)* XMATCH(K$3,HSTACK($A$4,$B$4,$C$4,$D$4,$E$4,$F$4,$G$4,$H$4,$I$4,$J$4),1),0)/2,0)This should return the 0,1,2,3,4,5 all on the same row
MattRaw
Dec 19, 2024Copper Contributor
Thank you for the alternative view on this - and while it works fine for returning the figures on the individual rows, what I am trying to achieve is to return all the 1-5 figures on a single row.
But thanks for your time on this.
m_tarler
Dec 19, 2024Bronze Contributor
That is what I sort of thought and mentioned in my reply all you have to do is remove that last line of the equation:
=ROUND(IFERROR(
(--L$3>$A$4)*
XMATCH(K$3,HSTACK($A$4,$B$4,$C$4,$D$4,$E$4,$F$4,$G$4,$H$4,$I$4,$J$4),1),0)/2,0)This should return the 0,1,2,3,4,5 all on the same row
- MattRawDec 20, 2024Copper Contributor
It works!!!🤩
Thank you!!!