アメリカの大学生活---日記

ミネソタ州立大学ムーアヘッド校 会計学部を5月に卒業して帰国し、税務の仕事してます。

2017-05-26から1日間の記事一覧

広告、チラシで学んだ英語表現

広告で学んだ英語表現 ABC Internet is the affordable way to stay connected. $100nper month. for first 12 month. 広告謳い文句、箇条書き - Check the weather online. - Record your favorite shows. - Call ahead to make reservations. Giant Liquid…

練習問題14(行の挿入・削除の練習) メモ

excel-ubara.com Sub Practice14() Dim i As Long For i = Cells(Rows.Count, 1).End(xlUp).Row To Step - 1 Select Case Cells(i, 1) Case "I" Rows(i).Inser Case "D" Rows(i).Delete End Select NextEnd Sub

ターキー

ザリガニを食す

Crave Burger

Crave Burger Company - 10 Photos & 19 Reviews - Burgers - 2501 8th St S, Moorhead, MN - Restaurant Reviews - Phone Number - Yelp

冷凍ステーキ: No Nameを食す

Smelt Fish

練習問題13(文字列関数の練習) メモ

excel-ubara.com Sub Practice13() Dim i As Long Dim strPref As String Dim strCity As String Range("G2:I8").ClearContents For i = 2 To Cells(Rows.Count, 1).End(xlUp).Row If InStr(Cells(i, 1), "(") > 0 Then strPref = Left(Cells(i, 1), InStr(C…

練習問題12(日付関数の練習)) メモ

excel-ubara.com Sub Pra12() Dim i As Long Dim intW As Integer Range("G2:I8").ClearContents For i = 2 To Cells(Rows.Count, 1).End(xlUp).Row intW = Weekday(DateSerial(Cells(i, 1), Cells(i, 2), Cells(i, 3)), vbMonday) Cells(intW + 1, 7) = Cel…

練習問題11(色々なコピーの練習) メモ

excel-ubara.com Sub 練習問題11() Range("A1:B6").Copy Range("D1") Range("A1:B6").Copy Range("G1").PasteSpecial Paste:=xlPasteValues Application.CutCopyMode = FalseEnd Sub

練習問題10(罫線の練習)メモ

excel-ubara.com Sub 練習問題10() Dim i As Long Dim lastRow As Long lastRow = Cells(Rows.Count, 1).End(xlUp).Row For i = 2 To lastRow Cells(i, 4) = Cells(i, 2) / Cells(i, 3) Next Range(Cells(2, 4), Cells(lastRow, 4)).NumberFormatLocal = "#,…