Can two HS.Account.List be compared in HFM?
Hi Experts,
Can you let me know if I can compare two HS.Account.List values in HFM?
For eg:
First Account list :
AccList = HS.Account.List("BalanceSheet","[Base]")
For a = LBound(AccList) To UBound(AccList)
Second Account list :
AccList2 = HS.Account.List("10000","[Base]")
For p = LBound(AccList2) To UBound(AccList2)
Will an If condition works if two lists are compared like below code. My Intention is to pick those accounts which are not present in AccList2 but in AccList. :-
If AccList(a) <> AccList2(p) Then
Any leads would be highly appreaciated.
Thanks,
Keerthi