Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
Here is the code to log the fid and field name to the console as a table display and as CSV:
Notes:
(1) This code uses widely supported ES6 features:
(2) underscorejs is used to map gTableInfo[gReqDBID].finfo into an array of arrays in the first instance and to reduce gTableInfo[gReqDBID].finfo to a CSV string in the second.
console.table(_.map(gTableInfo[gReqDBID].finfo, (field, fid) => { return [fid, field.name]; })); console.log(_.reduce(gTableInfo[gReqDBID].finfo, (memo, field, fid) => { return memo + '${fid},${field.name}\n'; }, "" ));
Notes:
(1) This code uses widely supported ES6 features:
- backticks for string interpolation
- fat arrow functions (ie =>)
(2) underscorejs is used to map gTableInfo[gReqDBID].finfo into an array of arrays in the first instance and to reduce gTableInfo[gReqDBID].finfo to a CSV string in the second.
- TonyScott5 years agoQrew TraineeLate reply to an old thread, but how hard would it be for QB to put an export function here instead of worrying about changing reports and other features that make no meaningful difference? This seems like a basis admin feature that is (still 4 years later) completely missed by QB.
------------------------------
Tony Tony
------------------------------- MarkShnier__You5 years ago
Qrew Legend
There is not a download button, but I was able to copy and paste the field list from the Quickbase page into Excel.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- TonyScott5 years agoQrew TraineeMark:
Yes, I was able to do a copy/paste as well, and then mess with the data in Excel. A little "export list" feature would be nice, and I don't think asking too much from QB.
Thank you!
Tony
------------------------------
Tony Tony
------------------------------