I want to create a hyperlink from a field 'Name' on Sheet1 (Summary) to the AutoFilter on column 'Name' on Sheet2 (Details), in order to display the details of that particular name only on the Sheet2.
I have imported :
import org.apache.poi.ss.usermodel.Hyperlink;
import org.apache.poi.ss.usermodel.CreationHelper;
Hyperlink to filter on other sheet.
I have done this using VB macro, but want to implement this using Java POI.
Not supported with JAVA POI - Till what I found..