All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.firegloves.mempoi.domain.footer.NumberMinSubFooter Maven / Gradle / Ivy

Go to download

A library to simplify export from database to Excel files using Apache POI

There is a newer version: 1.10.1
Show newest version
/**
 * this sub footer shows the minimum vlaue for all the numeric columns in the report
 */

package it.firegloves.mempoi.domain.footer;

public class NumberMinSubFooter extends NumberFormulaSubFooter {


    @Override
    protected String getFormula(String colLetter, int firstDataRowIndex, int lastDataRowIndex) {
        return "MIN(" + colLetter + firstDataRowIndex + ":" + colLetter + lastDataRowIndex + ")";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy