Yes, i know that excel can do that but not if you have 460 columns and 55000 lines. I just did the program (from K to C) and it worked. But i still don't know how I should do the other program. The one I have to make it read from the 4th row till the end and from the 60th line till the 100th. Do...
Yes, but we are talking about too many data because the file I have are data from 1950-2100 and not just temperature. So, I have to read just the data I want, somehow. The txt was only for upload use.
The read should be read(#,$) where # is the number of the file I have to state and $ the format.
I have an excel file where there are 10000 lines and 10000 columns. I want to read from the 4 row till the 60th and from the 60th line till the 100th. That's why I mentioned those numbers
Yes, I know how to read the whole file. I was using the do loop. I wrote it like this:
do i=60, 100
j=4, 60
read(*,*) the name of the file
end do
but it never worked.
Hi, i am a meteorologist student and I have some data I have to prepare using Fortan. I don't know how to make it read the file from the 4th row till the end and from the 60th line till the 100th. Can you please help me? I'm desperate!