Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Data table Iteration
#5
Solved: 10 Years, 10 Months, 1 Week ago
Hi Shandru,

First thing, The iterations will be done based on rows not on columns...
we can do iterations based on columns also, but need more programming. for your case I developed small piece of code, check it once and revert me if you need additional info,

This type of questions will be get in Interviews not in real time. we've many work arounds to solve these situations.

Code:
' Iterations based on Columns in Datatable
' First column will run once and second column runs thrice calling the Actions/Functions in it for every iteration.

Dim RC, CC, i, j, var

RC = Datatable.GetRowCount
CC = Datatable.GetSheet(dtGlobalSheet).getparametercount

print "Row count of the Datatable is :"&RC
print "Column Count of the Datatable is :"&CC

Function One()
   print "First Function is executed"
End Function

Function Two()
   print "Second Function is Executed"
End Function

Function Three()
   print "Third Function is Executed"
End Function

For i=1 to CC

    For j=1 to RC

        If (i=1) Then

            print i&"st Column iteration"
            print j&" Row cell value of "&i&" Column is :"& Datatable.Value(i,dtGlobalSheet)
            Datatable.SetNextRow
            
        End If

        If (i=2) Then
            For des = 1 to 3
                For k=1 to RC
                    var=datatable.Value(i,dtGlobalSheet)
                    'print "The Function Name is :"&var
                    Execute Cstr(var)  'or 'Call Cstr(var)
                    Datatable.SetNextRow
                Next
            Next
        Exit For
        End If

    Next
    if(i=2) Then
        Exit For
    End If
Next
Reply


Messages In This Thread
Data table Iteration - by Shandru - 11-24-2010, 08:20 PM
RE: Data table Iteration - by KavitaPriyaCR - 11-25-2010, 12:37 PM
RE: Data table Iteration - by Shandru - 11-26-2010, 04:13 PM
RE: Data table Iteration - by manishbhalshankar - 11-30-2010, 12:05 PM
RE: Data table Iteration - by bfakruddin - 11-30-2010, 06:46 PM
RE: Data table Iteration - by Shandru - 12-02-2010, 01:44 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with Select checkbox from data table value jayraocourts 0 1,093 11-01-2019, 10:25 PM
Last Post: jayraocourts
  Different Amount for same iteration Rose 1 2,108 03-31-2016, 02:42 PM
Last Post: vinod123
Sad UFT IS NOT ABLE TO FIND THE RUNTIMEOBJECT(myo) IN FOR LOOP FOR THE SECOND ITERATION lakshmi29 0 2,188 09-14-2014, 10:00 PM
Last Post: lakshmi29
  How to get center data value in a odd number of rows and columns web table ... sai rajesh 0 2,632 11-13-2013, 10:24 PM
Last Post: sai rajesh
  DP is not returning the whole table data content soumen 6 4,856 10-02-2013, 12:05 PM
Last Post: vvcyril

Forum Jump:


Users browsing this thread: 1 Guest(s)