• By Inessa Peters
  • September 16, 2025
  • No Comments

Custom Fields – Functions (2/2)

Continuing the previous post — let’s dive into the functions used for assessments in Custom Fields! 🔍✨

Here’s a quick list:

EQ — equal
NEQ — not equal
🔺 GT — greater than
🔺= GTE — greater or equal
🔻 LT — less than
🔻= LTE — less than or equal
📊 RANGE — check if a value is within a specific range

 

👉 Example: You want a custom field that tells you if the amount of a peak is bigger than 1.5:

Field Type: Peak
Data Type: Bool
Formula: GT(Amount,1.5)

You can then decide what should happen based on the result — for example:

If the amount > 1.5 → show “Main Component”
If less → show “Impurity”

Or even continue with further calculations like:

If Amount > 1.5 → Amount×Factor, else → Amount×0

It’s just a simple example to show what’s possible — but the options are endless!

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert