Both sides previous revision Previous revision Next revision | Previous revision |
data_analysis:excel [2021/03/19 07:32] – [Text] prgram | data_analysis:excel [2025/07/07 14:12] (current) – external edit 127.0.0.1 |
---|
| |
[[https://statwith.tistory.com/579|자신의 엑셀 수준은??]] | [[https://statwith.tistory.com/579|자신의 엑셀 수준은??]] |
| |
| |
| |
| |
| Cartesian Product 하기 [[https://stackoverflow.com/questions/26999604/is-there-a-way-to-perform-a-cross-join-or-cartesian-product-in-excel|stackoverflow]] |
| - Alt(바로 떼기)+D+P : 피벗테이블 마법사 |
| - Multiple consolidation ranges" --> create a single page.. --> Select all cells (including headers!) |
| - 값을 행으로 넣기 |
| |
| substitute text 여러개 한번에 하기 (LAMBDA & recursive function) : 이름정의 MultiReplace 로 |
| https://www.ablebits.com/office-addins-blog/excel-find-replace-multiple-values/ |
| <code vb> |
| =LAMBDA(text, old, new, IF(old="", text, MultiReplace(SUBSTITUTE(text, old, new), OFFSET(old, 1, 0), OFFSET(new, 1, 0)))) |
| </code> |
| |
| #DIVS 에러 처리 |
| <code vb> |
| =LET( x, sumifs( A2/B2 ), IF(x = 0, "",x) ) |
| =iferror(1/(1/sumifs( A2/B2 )) , "") |
| </code> |
| |
| |
* [[http://www.mbaexcel.com/excel/why-index-match-is-better-than-vlookup/|http://www.mbaexcel.com/excel/why-index-match-is-better-than-vlookup/]] | * [[http://www.mbaexcel.com/excel/why-index-match-is-better-than-vlookup/|http://www.mbaexcel.com/excel/why-index-match-is-better-than-vlookup/]] |
* [[http://www.exceluser.com/formulas/why-index-match-is-better-than-vlookup.htm|http://www.exceluser.com/formulas/why-index-match-is-better-than-vlookup.htm]] | * [[http://www.exceluser.com/formulas/why-index-match-is-better-than-vlookup.htm|http://www.exceluser.com/formulas/why-index-match-is-better-than-vlookup.htm]] |
| * txt로 복사할 때 쌍 따옴표(double quotes) 안붙게 : word 에 복사한 후 txt로 복사 |
| |
| |
* HDD 내에 특정 프로그램 설치시 (특정 파일 존재시) | * HDD 내에 특정 프로그램 설치시 (특정 파일 존재시) |
* 속도 느릴땐 숨겨진 개체가 없는지 확인하자 | * 속도 느릴땐 숨겨진 개체가 없는지 확인하자 |
| |
| * 메모 : 데이터 > 데이터 유효성 검사 > 설명 메시지 |
| |
* Macro에 password를 걸었더라도, Shape macro 설정을 통해서 실행할 수 있으니.. \\ 밖에서 실행하면 안되는 함수는<font inherit/inherit;;#c0392b;;inherit>: private으로 설정 or Sheet/Workbook 의 코드로 삽입</font> | * Macro에 password를 걸었더라도, Shape macro 설정을 통해서 실행할 수 있으니.. \\ 밖에서 실행하면 안되는 함수는<font inherit/inherit;;#c0392b;;inherit>: private으로 설정 or Sheet/Workbook 의 코드로 삽입</font> |