Formula address from column and row numbers in SmartXLS (java)
问题 How can I get the formula address of a cell knowing the column and the row numbers? I want to use it to link a dynamic data source to a chart. THX 回答1: You can use the formatRCNr method: String rangestr = workBook.formatRCNr(0, 0, false) + ":" + workBook.formatRCNr(2, 2, false); //A1:C2 来源: https://stackoverflow.com/questions/16567698/formula-address-from-column-and-row-numbers-in-smartxls-java