Hello guys i have an excel with column and data

Here i want to calculate same data ie,
P-100-7101-2020-3 = 2
P-100-7101-2022-100 = 1
P-100-7101-2022-245 = 3
i need the value to enter it in a field. (Using RE Framework for this process)
does anyone have the idea
I want to call the total number while processing each transaction data, means
if iam processing " P-100-7101-2020-3" it should return 2.
Can we do like that
@Anil_G
@Rahul_Unnikrishnan
Can you help me out on this
ppr
(Peter Preuss)
5
WE can doit by grouping the Data and counting the group members
ppr
(Peter Preuss)
6
As already presented
dtData = your Origin DataTable Variable
YourKey = we assume "Policy Reference"
Otherwise it is a filter case or we can filter the prepared GroupBy Count Result
Anil_G
(Anil Gorthi)
7
@Gokul_Murali
in the proces.xaml i hope you are getting the Policy Reference
dt.AsEnumerable.Where(function(x) x("Policy Reference").ToString.Equals(TransactionItem("Policy Reference").ToString)).Count
cheers
system
(system)
Closed
8
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.