Created
April 24, 2026 16:41
-
-
Save antoniolocandro/fad49a816b7708f36c7bfb89638e7031 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '<b>' || "NAME" || '</b>' || | |
| '<p style="margin:0; text-align:center;">' || | |
| coalesce("UPPERLIMIT",'') || | |
| '</p>' || | |
| '<p style="margin:0; text-align:center;">' || | |
| '<span style="text-decoration: overline;">' || | |
| CASE | |
| WHEN length("LOWERLIMIT") < length("UPPERLIMIT") THEN | |
| repeat(' ', (length("UPPERLIMIT")- Length("LOWERLIMIT"))-1) || | |
| coalesce("LOWERLIMIT",'') || | |
| repeat(' ', (length("UPPERLIMIT") / 2)) | |
| WHEN length("LOWERLIMIT") > length("UPPERLIMIT") THEN | |
| coalesce("LOWERLIMIT",'') | |
| ELSE | |
| coalesce("LOWERLIMIT",'') | |
| END || | |
| '</span></p>' || | |
| '<p style="margin:0; text-align:center;">' || | |
| coalesce("FREQUENCY",'') || | |
| '</p>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment