In OpenOffice Calc / LibreOffice Calc, I need to find out if a cell in the row below the current cell is empty. To do this, I use the ISBLANK()
function.
For example,
ISBLANK(B5)
That works well, but I need the function to be generic to always look at the row below the current row. For example in row 4, I need to be looking at cell B5, and in row 5, I need to be looking at cell B6.
In pseudo-code, this is: ISBLANK(B[row below the current one])
For reasons beyond the scope of this question, I can't just extend the formula to autofill the correct rows.
Can this be done in OpenOffice or LibreOffice? If so, how?