I'm trying to filter out data set with GL accounts that start with number 17 and 30 (GL accounts have 6 characters). So far I can only filter dataset with 17 GL or 30 GL. Can I write one formula that apply to both numbers? Thank you.
Hi @bui195
One way of doing this,
left(tostring([GL accounts]),2) = "17" OR
left(tostring([GL accounts]),2) = "30"
Many thanks
Shanker V