selection of data from a data rows

user3559655

I got wind speed data in excel table like this:

              (wind speed)           (wind direction)

Year|month|day|00:00|06:00|12:00|18:00||00:00|06:00|12:00|18:00||X|

1966|01|01|5|12|6|8||60|360|270|50||X|

goal is to get in each day wind directin at wich was the max wind speed, for example: in firs jan. 1966 the max wind speed was 12 m/s at 06:00 and directon at the same time was 360. I need that 360 in next (X) column. If there is equal max wind speed in several observaton times then is no mater which of those directions put in at next column.

Is it poseble do it in MS excel? If someone can help me it would be so great!

Fratyx

Assuming the wind speed columns are D-G and the directions H-K then put the following formula in your column where the 'X' is (for row 2; copy it down the other rows)

=LOOKUP(MAX(D2:G2);D2:G2;H2:K2)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Selection with data from 2 tables

From Dev

How to add multiple rows of data from one sql table to another with selection based on checkboxes?

From Dev

Shiny: Deleting rows from data

From Dev

move data from rows to columns

From Dev

Consolidating data from columns to rows

From Dev

Clearing data from rows in Datagrid

From Dev

Grabbing data from database based on dropdownlist selection

From Dev

drop down selection of data from mysql

From Dev

R Row selection vector from data frame

From Dev

Use total number of rows in selection in calculation with data.table

From Dev

JTable data not getting updated on combobox selection(data is coming from file)

From Dev

Add new rows to a data frame with data from a separate data frame

From Dev

Excel VBA to merge data from multiple rows

From Dev

Selecting rows from R data frame

From Dev

Aggregate data from multiple rows into single row

From Dev

Generate Doc pages from rows of spreadsheet data

From Dev

Update rows with data from the same table

From Dev

transform data from rows to column in R

From Dev

Remove the rows from the data frame if there is "," in specified column

From Dev

Removing duplicate rows from data frame in R

From Dev

remove rows with duplicate attribute from json data

From Dev

Add rows from the same data frame

From Dev

How to select rows from a data frame with replacement

From Dev

Getting Data From Multiple Rows in PHP & MySQL

From Dev

copy specific columns from rows with duplicate data

From Dev

Filling nulls with data from other rows

From Dev

Reshape data from rows to column in dataframe in R

From Dev

Combining data from multiple rows into one

From Dev

Combining Data from Multiple Rows in Simple Database

Related Related

  1. 1

    Selection with data from 2 tables

  2. 2

    How to add multiple rows of data from one sql table to another with selection based on checkboxes?

  3. 3

    Shiny: Deleting rows from data

  4. 4

    move data from rows to columns

  5. 5

    Consolidating data from columns to rows

  6. 6

    Clearing data from rows in Datagrid

  7. 7

    Grabbing data from database based on dropdownlist selection

  8. 8

    drop down selection of data from mysql

  9. 9

    R Row selection vector from data frame

  10. 10

    Use total number of rows in selection in calculation with data.table

  11. 11

    JTable data not getting updated on combobox selection(data is coming from file)

  12. 12

    Add new rows to a data frame with data from a separate data frame

  13. 13

    Excel VBA to merge data from multiple rows

  14. 14

    Selecting rows from R data frame

  15. 15

    Aggregate data from multiple rows into single row

  16. 16

    Generate Doc pages from rows of spreadsheet data

  17. 17

    Update rows with data from the same table

  18. 18

    transform data from rows to column in R

  19. 19

    Remove the rows from the data frame if there is "," in specified column

  20. 20

    Removing duplicate rows from data frame in R

  21. 21

    remove rows with duplicate attribute from json data

  22. 22

    Add rows from the same data frame

  23. 23

    How to select rows from a data frame with replacement

  24. 24

    Getting Data From Multiple Rows in PHP & MySQL

  25. 25

    copy specific columns from rows with duplicate data

  26. 26

    Filling nulls with data from other rows

  27. 27

    Reshape data from rows to column in dataframe in R

  28. 28

    Combining data from multiple rows into one

  29. 29

    Combining Data from Multiple Rows in Simple Database

HotTag

Archive