Hi All - I've created a compute field and added it to a report, but the field does not give the option of filtering. Anyone know how I could make it filterable? Thank you.
Only switching to using a search form would allow this.
Thanks!
You bet. As always, adding and searching anything Derived or Computed you need to be aware of the work it's doing for each row, the field def, the data cardinatily and the performance implications. It doesn't seem like your ComputeField is costly, but it depends what those two fields inside of it are exactly. They could be doing OTM lookups with Rels and scanning 100k rows to derive their own values for example. Danger. Or... they are simply locally persisted decimals. Ok!
Thanks for the additional info. I'll keep that in mind!