Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 python API blpapi 转换 BDP 和 BDS 等 excel 公式
我需要识别必填字段是批量字段(用于 BDS)还是简单字段(用于 BDP)
有没有办法做到这一点?
批量字段的数据类型 = Datatype.SEQUENCE
Element field = fields.GetElement(i); // Checking if the field is Bulk field if (field.Datatype == Datatype.SEQUENCE) { processBulkField(field); } else { processRefField(field); }
请参阅BulkRefDataExample。