In this example, we'll create an expression tag that converts Fahrenheit to Celsius.
- From Tag Browser, click on the New Tag
icon or right click on a folder and select New Standard Tag > Expression Tag.

- In the Tag Editor, enter:
Name: FtoC Expression
Data Type: Float
Next to the Expression property, click on the Edit
icon.

In the New Tag > Expression window, type in any expression using Ignition’s Expression Language. See Expression Functions in the Appendix for information on all expression operations and functions.
Copy in the following expression:
(5/9) * ({[~]Refrigeration/ambientTemp} - 32)

If you want to use a different Tag, replace the {[~]Refrigeration/ambientTemp}
Tag path with any Tag of your choice. Instead of typing the referenced tag path, you can use the Tag
icon on the right side of the Tag Editor > Expression window to select the Tag path. In the example we chose a temperature Tag from a tower.

- Click OK to accept the Tag you've highlighted.
- Click Commit in the New Tag > Expression window.
- Click OK to save the Tag . You will see the value from your calculation on the Tag. Note that the Expression Tags are evaluated at the rate the Tag Group is set to.

Creating a Derived Tag is nearly identical to creating an Expression tag, with the exception that you can provide both a Read Expression and a Write Expression for the tag. Follow the same steps as for an Expression tag.
From Tag Browser, click on the New Tag
icon or right click on a folder and select New Standard Tag > Derived Tag.
- Once in the Tag editor, click on the Edit
icon next to the Read Expression property. - In the New Tag > Read Expression window, type in any expression using Ignition’s Expression Language. Click Commit.
- Back in the Tag editor, click on the Edit
icon next to the Write Expression property. - In the New Tag > Write Expression window, type in any expression using Ignition’s Expression Language. Click Commit.
- In the Tag Editor, click OK.
See Expression Functions in the Appendix for information on all expression operations and functions.

See Expression Functions in the Appendix for information on all expression operations and functions.