Hello All,
I have a Before-Update Macro that should input a value in REPORT-VI field of my AllocationFinancials table.
If AllocationFinancials.FinancialType <> "Amortization" Then
LookUpARecord in VISAs
Where Condition AllocationFinancials.Title=VISAs.Title
Alias
SetField
Name AllocationFinancials.Report-VI
Value VISAs.VoteItem
// Report-VI equals to VISAs.VoteItem where AllocationFinancials.Title=VISAs.Title
Else
SetField
Name = AllocationFinancials.Report-VI
Value = "S"
Endif
The problem I am getting with this is that when AllocationFinancials.FinancialType <> "Amortization", the AllocationFinancials.Report-VI field is just empty. The AllocationFinancials.Report-VI cannot be empty because VISAs.VoteItem is never empty. Any suggestions or tips would be immensely greatful!
I have a Before-Update Macro that should input a value in REPORT-VI field of my AllocationFinancials table.
If AllocationFinancials.FinancialType <> "Amortization" Then
LookUpARecord in VISAs
Where Condition AllocationFinancials.Title=VISAs.Title
Alias
SetField
Name AllocationFinancials.Report-VI
Value VISAs.VoteItem
// Report-VI equals to VISAs.VoteItem where AllocationFinancials.Title=VISAs.Title
Else
SetField
Name = AllocationFinancials.Report-VI
Value = "S"
Endif
The problem I am getting with this is that when AllocationFinancials.FinancialType <> "Amortization", the AllocationFinancials.Report-VI field is just empty. The AllocationFinancials.Report-VI cannot be empty because VISAs.VoteItem is never empty. Any suggestions or tips would be immensely greatful!