Я ищу помощь по моему проекту. Проект требует от меня go через таблицу в Excel и оценить одну ячейку в столбце, а затем сложить числа из строки этой ячейки в единственную ячейку. Извините, это звучит странно, но я попытаюсь ввести его в Java коде.
'' '
//CellColumn = The cell I am trying to evaluate
//CellMainC = The cell I am trying to compare/evaulate CellColumn to
//CellRow = The cell I am trying to get the number from
//CellMainR = The cell I'm trying to aggregate numbers from CellRow
if(CellColumn=CellMainC)
{
CellMainR + CellRow;
}
else if (CellColumn!=CellMainC)
{
//This is where I get stuck
Continue going down list until CellColumn = CellMainC
}
else
{
return;
}
' ''