Triva isn't available right now.
Remittance: [FilingInstructions.AmountDue > 0 ? ("Payment of ") + (FilingInstructions.AmountDue) + ("is required.")][FilingInstructions.AmountDue = 0 ? ("None is required.")][FilingInstructions.AmountDue < 0 ? ("None is required. There is an overpayment of $ ") + (FilingInstructions.AmountDue * -1) + (".")][FilingInstructions.PenaltyInterestDue > 0 ?(" Penalty and interest of ") + (FilingInstructions.PenaltyInterestDue) + (" is included.")]
Operator | Description |
|---|---|
Has Data | [HasData(Client.DBAName) ? ("DBA Name has data")] |
Has No Data | [HasNoData(Client.DBAName) ? ("DBA Name is blank")] |
Contains | [Contains(Client.Name,"test") ? ("Client name contains test.")] |
Does Not Contain | [DoesNotContain(Client.Name,"abc") ? ("Client name doesn't contain abc.")] |
Equals ("="), with the or ("|") argument | [Client.CustomFields.Checkbox.Value = "Yes" | Client.CustomFields.Text.Value = "Testing" ? ("The checkbox is yes or the text is testing.")] |
Equals ("="), with the and ("&") argument | [Client.CustomFields.Checkbox.Value = "Yes" & Client.CustomFields.Text.Value = "Testing" ? ("The checkbox is yes and the text is testing.")] |
Greater than or equal to (">=") a number and less than ("<") another number | [Client.CustomFields.Number.Value >= 1 & Client.CustomFields.Number.Value < 100 ? ("The number is greater than or equal to 1 and less than 100.")] |
[Client.EntityType.Entity = "1120S" ? ("To the shareholders")][Client.EntityType.Entity = "1065" ? ("To the partners")][Client.EntityType.Entity = "1120" | Client.EntityType.Entity = "990" | Client.EntityType.Entity = "990PF" ? ("To the board of directors")]
[Client.CustomFields.Basis.Value = "US GAAP" ? ("balance sheet")][Client.CustomFields.Basis.Value = "Tax, Cash" | Client.CustomFields.Basis.Value = "Tax, Accrual" ? ("statement of assets, liabilities, and equity—income tax basis")]