EDIT: Well. This is a bug only on the desktop app. I’m guessing it was just fixed in the most recent update?
Hello!
Not sure if this is a bug or not so I’m asking here before GitHub just in case I’ve missed something.
I’m developing a database of chemistry information. The latest table has a formula containing a long chain of references:
Element ← Cation ← Binary Compound (list) ← Mixed Compound (list) ←Mixed Compound (formula)
(Where Cation contains a reference column to Element, etc.)
In the formula I’m trying to get the column “Name” from Element through the column “Compound List” in Mixed Compound with:
$Compound_List.Cation.Element.Name
but this causes:
AttributeError : ‘list’ object has no attribute ‘Element’
$Compound_List.Cation.Element of course gives the same error. Only $Compound_List.Cation returns anything, which is [Cation[[23]], Cation[[94]]. Which is what it should look like, no? So why isn’t it working?
Thanks for all you do ![]()