The problem is in the [Display] group. In particular in the section
toggle quoted message
Show quoted text
_|GP={DSGet~Treasure,%Index%,GP}| _<td align="left" valign="top">{If~%XP%=0?{Color~White,__}/%XP%}</td> _|XP={DSGet~Treasure,%Index%,XP}| _<td align="left" valign="top">{If~%GP%=0?{Color~White,__}/%GP%}</td> you've swapped GP and XP in the {DSGet} functions. It needs to be _|XP={DSGet~Treasure,%Index%,XP}| _<td align="left" valign="top">{If~%XP%=0?{Color~White,__}/%XP%}</td> _|GP={DSGet~Treasure,%Index%,GP}| _<td align="left" valign="top">{If~%GP%=0?{Color~White,__}/%GP%}</td> As an aside, is there a reason you're using {DSAddNR~Treasure} plus a bunch of {DSSet} functions rather than {DSAddNR~Treasure,Item,%Item%,QTY,%QTY%,XP,%XP%,GP,%GP%,Notes,%Notes%} ? Erol K. Bayburt ErolB1@... On 4/28/2021 8:28 PM, Otaku Smurf wrote:
I have just noticed that my Datasets are either not setting correctly, or not getting correctly.? Most likely, I have something off in my code and can't see it. |