Hi, In Calc,I have a cell that is made with Data-Validity and it’s value is used to calculate sheet.
How coud I print calculated sheets with all dropdown list items? Single PDF would be fine.
Could not find that for LO.
I found the following macro for MSO but coiuld not try it as Range is not available in LO:
Sub MS_Print_Thru_Data_Validation_AY10()
Dim xRg As Range
Dim xCell As Range
Dim xRgVList As Range
Set xRg = Worksheets(“ASD-1032 02 23 PERIOD”).Range(“AY10”)
Set xRgVList = Evaluate(xRg.Validation.Formula1)
For Each xCell In xRgVList
xRg = xCell.Value
ActiveSheet.PrintOut
Next
End Sub