Hi MichaelAnnis.
Thanks for your suggestions. I never thought VBA can be a solution. My problem is that i´m not neither as good as you in vba or pad. But i will try to digest your suggestion and let see how far i can go.
Hi Usha.
Thanks for your time looking at my request. You suggest enable regular expression function and i´d be grateful if you can create a flow so i can try and learn some new feature in pad.
Please take a look at my shortcome flow:
SET FilePath TO $'''C:\\Users\\DD\\Desktop\\PAD\\WM interface per maskin\\W interface per maskin_test.xlsx'''
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: FilePath Visible: True ReadOnly: True Instance=> ExcelInstance
Excel.GetFirstFreeColumnRow Instance: ExcelInstance FirstFreeColumn=> FirstFreeColumn FirstFreeRow=> FirstFreeRow
Excel.ReadFromExcel.ReadCells Instance: ExcelInstance StartColumn: $'''B''' StartRow: 1 EndColumn: FirstFreeColumn - 1 EndRow: FirstFreeRow - 1 ReadAsText: False FirstLineIsHeader: True RangeValue=> ExcelData
Excel.CloseExcel.Close Instance: ExcelInstance
Display.InputDialog Title: $'''VERKTYGS KOMPENSERING FÖR SVARVSTÅL''' Message: $'''Skriv SvarvStål börjar me T''' InputType: Display.InputType.SingleLine IsTopMost: False UserInput=> UserInput ButtonPressed=> ButtonPressed
Variables.CreateNewDatatable InputTable: { ^['Column1', 'Column2', 'Column3', 'Column4'], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''], [$'''''', $'''''', $'''''', $''''''] } DataTable=> DataTable
LOOP FOREACH CurrentItem IN ExcelData.Columns
IF Contains(CurrentItem, UserInput, False) THEN
DISABLE Variables.RetrieveDataTableColumnIntoList DataTable: CurrentItem ColumnNameOrIndex: UserInput ColumnAsList=> ColumnAsList
Display.ShowMessageDialog.ShowMessage Message: CurrentItem Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed2
END
END
and this is the excel file.