Error using CFPOI to create spreadsheets (Lucee 6.1.0.243)

Created a server to test against Lucee 6.1.0.243
On the application we use cfpoi to create spreadsheets.

On most of the files the line:

<cfset SpreadsheetAddRows(sObj, Evaluate("#qryName#"))>

works fine. but on a small handfull of reports I get an error:

FATAL JAVA.LANG.NOSUCHMETHODERROR ERROR

lucee/runtime/functions/math/Min.call(Llucee/runtime/PageContext;DD)D (loaded from d:\lucee\tomcat\lucee-server\patches\6.1.0.243.lco by lucee.core [48]) called from class org.cfpoi.spreadsheet.spreadsheet_cfc$cf (loaded from d:\lucee\tomcat\lucee-server\context\archives\cfc\cfspreadsheet\cfc-archive-cfspreadsheet.lar by 1mz0ez85r04pz [50]).

OS: Windows Server 2019 Datacenter
Java Version: 11.0.10+9
Tomcat Version: Apache Tomcat/9.0.34
Lucee Version: 6.1.0.243

Still unsure of how or why this code works on approximately 100 other reports, but found a work around.
<cfset SpreadsheetSetCellValue(sObj,query_column_name,x,1,“STRING”)> …
inside a loop query and this works adds in all columns properly