Je kunt Excel tabellen ook gelinkt plaatsen in InDesign (zet de Import opties aan), probleem is dat je na het bijwerken de vormgeving die je hebt toegepast weer kwijtraakt en dus opnieuw moet aanbrengen.
Plug-ins zoals Smart Styles van de Nederlandse Woodwing ontwikkelaars
http://woodwing.com/smartstyles.htmlaten je eenvoudig de door jou gewenste vormgeving met een klik toepassen op geïmporteerde tabellen.
Teacup software heeft hier er ook een plug-in voor:
http://www.teacupsoftware.com/products/tablecellstyles1_0.htmlAls het gaat om he plakken van nieuwe informatie in een bestaande tabel (het aantal rijen en kolommen moeten wel hetzelfde zijn en de nieuwe tekst moet tabs en returns bevatten) dan zou dit Applescript kunnen helpen (selecteer de tekstvan het script, plak het in een Text Only bestand en bewaar het in de InDesign Scripts folder)
groeten, Ton (die ook niet alles weet)
-- this script populates cells of a table using the raw text
-- of whatever is on the clipboard.
property cellSep : tab
property rowSep : return
-- first, let's make sure there's some text out there
tell application "Adobe InDesign CS2"
activate
try
set rawText to (the clipboard as string)
if rawText = "" then error
set oldDelims to AppleScript's text item delimiters
set AppleScript's text item delimiters to {""}
set rawText to characters 1 through -3 of rawText as string
on error
display dialog "There's no text on the clipboard."
return
end try
-- now let's make sure the cursor is in a cell
if class of parent of selection is not cell then
display dialog "Insertion point must be in a cell of a table."
return
end if
set theTable to parent of parent of selection
set AppleScript's text item delimiters to {":"}
set cellRef to (name of parent of selection)
set colRef to (text item 1 of cellRef) as integer
set rowRef to (text item 2 of cellRef) as integer
set AppleScript's text item delimiters to {rowSep}
set rawRows to (every text item of rawText)
set AppleScript's text item delimiters to {cellSep}
repeat with rawRow in rawRows
set rawCells to every text item of rawRow
set cellCount to colRef
repeat with rawCell in rawCells
try
set text of cell cellCount of row rowRef of theTable to rawCell
end try
set cellCount to cellCount + 1
end repeat
set rowRef to rowRef + 1
end repeat
set AppleScript's text item delimiters to oldDelims
end tell
(Bewerkt door AdobeTon om 0:20, 18-05-2005)