i am importing some Excel coloumns, what perfectly works.
Unfortunatly i am current setting the range Range [2, 50] statically
import = Import["/Users/Tool/Import.xls", {"Data", 2, Range [2, 50], {4, 5}}]
is there a way to set up this dynamically. Just the number of the rows. The coloumns are fixed in {4, 5}
many thanks
Range[2,50]with 'All'. See duplicate here: http://mathematica.stackexchange.com/q/71635/6588 – Quantum_Oli Aug 21 '16 at 10:14Rest: https://reference.wolfram.com/language/ref/Rest.html – Quantum_Oli Aug 21 '16 at 10:43Importoptions to select the range.Importthe whole thing and usePartto save what you want. There is no performance or memory savings to do it viaImport– george2079 Sep 20 '16 at 14:53