Number
6000623077
6000623462
6000623463
6000623464
6000623465
6000623466
6000623674
6000623675
And I need create a new DT from the old one with two columns From, To Which would skip consecutive values and extract only the lowest and highest. Like below
From To
6000623077 6000623077
6000623462 6000623466
6000623674 6000623675
We would require more details on how the Output is derived, What was the Logic used, How would you do it manually ? Why is the First value repeated on both the columns ?
If you could help us in providing more information on the logic/condition to be used, we may be able to help you in providing appropriate suggestions.
Hi, the values are invoice number and I need it to insert into SAP, so far it is uploading one by one, but I would like to modify it so we can upload multiple invoices in one time.
Could you also show us the SAP Screen where this is to be input ?
Do Note that this Output format is still not explained in a way we could understand the logic. Maybe a relation / pattern is shown to use but that relation conflicts certain things and is not completely clear.
The logic is, we create a invoices during a month and at the end of month we need to pair it to payment and one of the step is input the data into the SAP table.
Int32 (Cint) supports from -2,147,483,648 to 2,147,483,647. So, 6000623077 will be overflow.
Please use Int64 ( or String if you can accept non-numeric type)