Data format 시작하기전 1초 복습
스프레드시트에서는 소팅을 시트별로, 레인지 별로 진행할 수 있음
Using When in the SQL
<!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}-->
Timestamp | Temperature | Precipitation Total | Wind Speed | Wind Direction [10 m] | =convert(B2, "F","C") |
2020-08-20T00:00:00 | 69.994736 | 0 | 8.5248 | 89.99999 | 21.10818667 |
2020-08-20T01:00:00 | 67.51074 | 0 | 8.673356 | 100.61965 | 19.72818889 |
2020-08-20T02:00:00 | 65.20673 | 0 | 8.08909 | 107.241455 | 18.44818333 |
=CONVERT(D2, "mph", "m/s") 도 있음
- How to use GOUP BY in SQL
Excel video training - Microsoft Support
Take a tourDownload template > Formula tutorialDownload template > Make your first PivotTableDownload template > Get more out of PivotTablesDownload template > More resources Other versions Excel 2013 training Other training LinkedIn Learning Excel trainin
support.microsoft.com
- Data Aggregation
1. =VALUE() : changes string -> int
2. =Trim(): Trim extra spaces
3.Remove Duplicates: data cleanup -> Remove duplicates
4. VLOOKUP(value to look up for, range, column number to look for, False to do exact match(True - close match))
Employee # | Hours Worked | |
FT12578 | 20 |
=vlookup(A2,'Employee Rates'!$A$2:$B$5,2,False)
|
FT12579 | 20 | $13.00 |
FT12580 | 20 | $42.00 |
FT12581 | 20 | $25.00 |