Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
Million Dollar TTRPG Kickstarters
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Community
General Tabletop Discussion
*Pathfinder & Starfinder
Dynamic Excel "Wiesbaden Charactersheet"
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Yarthok" data-source="post: 4438634" data-attributes="member: 64890"><p><strong>open office calc 2.4.1</strong></p><p></p><p>Thanks again for creating your excellent character designer!</p><p> </p><p>I don't own a copy of Excel and instead use OpenOffice 2.4.1 (latest non-beta release) on Vista. In order to get some of the calculations to work in openoffice, I made the changes listed below. If the changes are appropriate to Excel, then I hope you will consider adding them to your version. The list is only what I have discovered for the characters and levels I have designed. </p><p> </p><p>[code]</p><p>(Modifications to wiesbaden_charsheet_v1_15_Full.xls to work with OpenOffice 2.4.1)</p><p> </p><p>$'Transport Attack'.D8 (repeat for all 'basic attack' & 'power' blocks on the same sheet)</p><p>old value ==> =D6*C8</p><p>new value ==> =VALUE(D6)*VALUE(C8)</p><p> </p><p>$'Transport Attack'.C25 (repeat for all 'basic attack' & 'power' blocks on the same sheet)</p><p>old value ==> =IF(D17=TRUE();C19*C20+C21;"")</p><p>new value ==> =IF(D17=TRUE();VALUE(C19)*VALUE(C20)+VALUE(C21);"")</p><p> </p><p>$'Transport Attack'.D25 (repeat for all 'basic attack' & 'power' blocks on the same sheet)</p><p>old value ==> =IF(D17=FALSE();IF(AND(D19=0;D20=0;D21=0);D23;D19*D20-D21);"")</p><p>new value ==> =IF(D17=FALSE();IF(AND(VALUE(D19)=0;VALUE(D20)=0;VALUE(D21)=0);VALUE(D23);VALUE(D19)*VALUE(D20)-VALUE(D21));"")</p><p> </p><p>$'Charsheet I'.CT15</p><p>old value ==> =10+SkillInsight</p><p>new value ==> =10+VALUE(SkillInsight)</p><p> </p><p>$'Charsheet I'.CT21</p><p>old value ==> =10+SkillPerception</p><p>old value ==> =10+VALUE(SkillPerception)</p><p> </p><p>$'Pro Sheet'.BG58</p><p>old value ==> =IF(AQ54="";"";IF(.I46="";.I40&"+"&VLOOKUP(.J44;.$8:$14;2;FALSE())&IF(OR(.J42="";.J42=0);"";"+"&.J42);.J46))</p><p>new value ==> =IF(AQ54="";"";IF(.I46="";.I40&"+"&VLOOKUP(.I44;.$8:$14;2;FALSE())&IF(OR(.I42="";.I42=0);"";"+"&.I42);.I46))</p><p> </p><p>$'Pro Sheet'.AH20</p><p>old value ==> =10+SArcana</p><p>new value ==> =10+VALUE(SArcana)</p><p> </p><p>$'Pro Sheet'.AH23</p><p>old value ==> =10+SNature</p><p>new value ==> =10+VALUE(SNature)</p><p> </p><p>[/code]</p><p> </p><p>Again, thanks so much for your hard work. I know you chose Excel 2007 as your target. Anything you can do to accomodate openoffice user's is very appreciated, but I recognize the difficulty of trying to make your spreadsheet work in multiple programs. </p><p> </p><p>I am not an Excel or a Calc guru, so any feedback on the above code is appreciated.</p></blockquote><p></p>
[QUOTE="Yarthok, post: 4438634, member: 64890"] [b]open office calc 2.4.1[/b] Thanks again for creating your excellent character designer! I don't own a copy of Excel and instead use OpenOffice 2.4.1 (latest non-beta release) on Vista. In order to get some of the calculations to work in openoffice, I made the changes listed below. If the changes are appropriate to Excel, then I hope you will consider adding them to your version. The list is only what I have discovered for the characters and levels I have designed. [code] (Modifications to wiesbaden_charsheet_v1_15_Full.xls to work with OpenOffice 2.4.1) $'Transport Attack'.D8 (repeat for all 'basic attack' & 'power' blocks on the same sheet) old value ==> =D6*C8 new value ==> =VALUE(D6)*VALUE(C8) $'Transport Attack'.C25 (repeat for all 'basic attack' & 'power' blocks on the same sheet) old value ==> =IF(D17=TRUE();C19*C20+C21;"") new value ==> =IF(D17=TRUE();VALUE(C19)*VALUE(C20)+VALUE(C21);"") $'Transport Attack'.D25 (repeat for all 'basic attack' & 'power' blocks on the same sheet) old value ==> =IF(D17=FALSE();IF(AND(D19=0;D20=0;D21=0);D23;D19*D20-D21);"") new value ==> =IF(D17=FALSE();IF(AND(VALUE(D19)=0;VALUE(D20)=0;VALUE(D21)=0);VALUE(D23);VALUE(D19)*VALUE(D20)-VALUE(D21));"") $'Charsheet I'.CT15 old value ==> =10+SkillInsight new value ==> =10+VALUE(SkillInsight) $'Charsheet I'.CT21 old value ==> =10+SkillPerception old value ==> =10+VALUE(SkillPerception) $'Pro Sheet'.BG58 old value ==> =IF(AQ54="";"";IF(.I46="";.I40&"+"&VLOOKUP(.J44;.$8:$14;2;FALSE())&IF(OR(.J42="";.J42=0);"";"+"&.J42);.J46)) new value ==> =IF(AQ54="";"";IF(.I46="";.I40&"+"&VLOOKUP(.I44;.$8:$14;2;FALSE())&IF(OR(.I42="";.I42=0);"";"+"&.I42);.I46)) $'Pro Sheet'.AH20 old value ==> =10+SArcana new value ==> =10+VALUE(SArcana) $'Pro Sheet'.AH23 old value ==> =10+SNature new value ==> =10+VALUE(SNature) [/code] Again, thanks so much for your hard work. I know you chose Excel 2007 as your target. Anything you can do to accomodate openoffice user's is very appreciated, but I recognize the difficulty of trying to make your spreadsheet work in multiple programs. I am not an Excel or a Calc guru, so any feedback on the above code is appreciated. [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*Pathfinder & Starfinder
Dynamic Excel "Wiesbaden Charactersheet"
Top