วันพุธที่ 29 ตุลาคม พ.ศ. 2557

เว็บทำการ์ตูน... Storyboard Creator


เปิดเทอมใหม่ ... ขอแนะนำเว็บทำการ์ตูนช่อง www.storyboardthat.com 

สามารถสร้างนิทาน บทเรียนเสริมการเรียนรู้ด้วยรูปภาพ มีรูปแบบตัวละคร การ์ตูน ภาพสถานที่ สัตว์ หรือจะอัพรูปขึ้นไปเอง และครื่องมือต่างๆ มากมาย ใส่บทพูดได้ทั้งภาษาไทยและภาษาอังกฤษ พร้อมทั้งสามารถเซฟไฟล์ออกมาเป็นรูปภาพ ไฟล์ pdf  หรือ  Powerpoint ได้อีกด้วย

แหล่งที่มา    Facebook : Thailand Partners in Learning

วันจันทร์ที่ 13 ตุลาคม พ.ศ. 2557

บทเรียน PHP Framework

เป็นหลักสูตรที่สอนพัฒนา Web Application โดยใช้ PHP Framework ต่าง ๆ ได้แก่ CodeIgniter โดยจะมีสอนตั้งแต่พื้นฐาน ก็คือ การ download และติดตั้ง framework บน localhost และการทำความเข้าใจในส่วนต่าง ๆ ของโครงสร้างใน framework นั้น


คลิกที่นี่เพื่อเข้าเรียนบทเรียนออนไลน์ได้

แหล่งที่มา    เว็บไซต์ DekIT.TV

บทเรียน Android

เป็นหลักสูตรที่สอนพัฒนา Mobile Application ที่ทำงานบนระบบปฏิบัติการ Android โดยมีสอนตั้งแต่พื้นฐาน ก็คือ การติดตั้ง Android Studio เพื่อใช้ในการพัฒนาโปรแกรม การสร้าง Virtural Device เพื่อใช้ทดสอบโปรแกรมที่เราพัฒนาขึ้นมา ไปจนถึงสอนการใช้งาน Layout และ Widget ต่าง ๆ ของ Android

คลิกที่นี่เพื่อเข้าเรียนบทเรียนออนไลน์ได้


แหล่งที่มา    เว็บไซต์ DekIT.TV

วันศุกร์ที่ 3 ตุลาคม พ.ศ. 2557

ฟังก์ชัน SUMIF, SUMIFS

ฟังก์ชัน  SUMIF
ฟังก์ชัน SUMIF เมื่อต้องการหาผลรวมที่มีเงื่อนไข เช่น หาผลรวมของสินค้าที่ซื้อ ตามชื่อสินค้าที่ได้ระบุ

หน้าที่ของฟังก์ชัน  SUMIF
จะใช้หาผลรวมของตัวเลขในอาร์กิวเมนต์โดยการระบุเงื่อนไข

รูปแบบของสูตร
SUMIF(rang,criteria,sum_range)

Range หมายถึง ช่วงเซลล์ที่มีเงื่อนไขที่ระบุใน criteria
Criteria หมายถึง เงื่อนไขที่ระบุ โดยจะเป็นตัวเลขหรือความข้อความก็ได้
Sum_rang หมายถึง ช่วงเซลล์ที่ต้องการให้หาผลรวมตามเงื่อนไขที่เราระบุไว้



** ฟังก์ชัน  SUMIF จะใช้หาผลรวมได้เพียงเงื่อนไขเดียว **


ฟังก์ชัน  SUMIFS
ฟังก์ชัน  SUMIFS เป็นฟังก์ชันใหม่ใน MS Excel 2007 ในเวอร์ชัน 2003 จะไม่มี ซึ่งเราจะใช้คำนวณเพื่อหาผลรวม โดยมีมากกว่า 1 เงื่อนไข

หน้าที่ของฟังก์ชัน  SUMIFS
ฟังก์ชัน  SUMIFS มีหน้าที่ในการหาผลรวมของตัวเลขในอาร์กิวเมนต์ ซึ่งระบุได้หลายเงื่อนไข

รูปแบบของสูตร
SUMIFS(sum_rang,criteria_rang1,criteria1, criteria_rang2,criteria2,…)

Sum_rang  หมายถึงช่วงเซลล์ที่ต้องการให้หาผลรวมตามเงื่อนไข
criteria_rang1 หมายถึงช่วงเซลล์แรกที่ต้องการให้ทดสอบกับเงื่อนไขแรก หรือ criteria 1
criteria1 หมายถึง เงื่อนไขแรกที่ระบุ จะเป็นตัวเลขหรือข้อความก็ได้จ้า
criteria_rang2 หมายถึง ช่วงเซลล์ที่ 2 ที่ต้องการทดสอบเงื่อนไข (ถ้ามี)  ซึ่งเราสามารถสร้างได้ถึง 127 เงื่อนไข
criteria2,… หมายถึง เงื่อนไขที่ 2 ที่ต้องการทดสอบเงื่อนไข (ถ้ามี)  ซึ่งเราสามารถสร้างได้ถึง 127 เงื่อนไข

Sumif by Mike girvin


แหล่งที่มา     เว็บไซต์ EXCEL Formulas and Function,  Facebook : Excel Tricks

Excel Math and Trig Functions List

Excel Math and Trig Functions List
ABS Returns the absolute value (ie. the modulus) of a supplied number
SIGN Returns the sign (+1, -1 or 0) of a supplied number
GCD Returns the Greatest Common Divisor of two or more supplied numbers
LCM Returns the Least Common Multiple of two or more supplied numbers


Basic Mathematical Operations
SUM Returns the sum of a supplied list of numbers
PRODUCT Returns the product of a supplied list of numbers
POWER Returns the result of a given number raised to a supplied power
SQRT Returns the positive square root of a given number
QUOTIENT Returns the integer portion of a division between two supplied numbers
MOD Returns the remainder from a division between two supplied numbers
AGGREGATE Performs a specified calculation (eg. the sum, product, average, etc.) for a list or database, with the option to ignore hidden rows and error values (New in Excel 2010)
SUBTOTAL Performs a specified calculation (eg. the sum, product, average, etc.) for a supplied set of values


Rounding Functions
CEILING Rounds a number away from zero (ie. rounds a positive number up and a negative number down), to a multiple of significance
CEILING.PRECISE Rounds a number up, regardless of the sign of the number, to a multiple of significance (New in Excel 2010)
ISO.CEILING Rounds a number up, regardless of the sign of the number, to a multiple of significance. (New in Excel 2010)
CEILING.MATH Rounds a number up to the nearest integer or to the nearest multiple of significance (New in Excel 2013)
EVEN Rounds a number away from zero (ie. rounds a positive number up and a negative number down), to the next even number
FLOOR Rounds a number towards zero, (ie. rounds a positive number down and a negative number up), to a multiple of significance
FLOOR.PRECISE Rounds a number down, regardless of the sign of the number, to a multiple of significance (New in Excel 2010)
FLOOR.MATH Rounds a number down, to the nearest integer or to the nearest multiple of significance (New in Excel 2013)
INT Rounds a number down to the next integer
MROUND Rounds a number up or down, to the nearest multiple of significance
ODD Rounds a number away from zero (ie. rounds a positive number up and a negative number down), to the next odd number
ROUND Rounds a number up or down, to a given number of digits
ROUNDDOWN Rounds a number towards zero, (ie. rounds a positive number down and a negative number up), to a given number of digits
ROUNDUP Rounds a number away from zero (ie. rounds a positive number up and a negative number down), to a given number of digits
TRUNC Truncates a number towards zero (ie. rounds a positive number down and a negative number up), to the next integer.


Matrix Functions
MDETERM Returns the matrix determinant of a supplied array
MINVERSE Returns the matrix inverse of a supplied array
MMULT Returns the matrix product of two supplied arrays
MUNIT Returns the unit matrix for a specified dimension (New in Excel 2013)


Random Numbers
RAND Returns a random number between 0 and 1
RANDBETWEEN Returns a random number between two given integers


Conditional Sums
SUMIF Adds the cells in a supplied range, that satisfy a given criteria
SUMIFS Adds the cells in a supplied range, that satisfy multiple criteria (New in Excel 2007)


Advanced Mathematical Operations
SUMPRODUCT Returns the sum of the products of corresponding values in two or more supplied arrays
SUMSQ Returns the sum of the squares of a supplied list of numbers
SUMX2MY2 Returns the sum of the difference of squares of corresponding values in two supplied arrays
SUMX2PY2 Returns the sum of the sum of squares of corresponding values in two supplied arrays
SUMXMY2 Returns the sum of squares of differences of corresponding values in two supplied arrays
SERIESSUM Returns the sum of a power series


Trigonometry Functions
PI Returns the constant value of pi
SQRTPI Returns the square root of a supplied number multiplied by pi
DEGREES Converts Radians to Degrees
RADIANS Converts Degrees to Radians
COS Returns the Cosine of a given angle
ACOS Returns the Arccosine of a number
COSH Returns the hyperbolic cosine of a number
ACOSH Returns the inverse hyperbolic cosine of a number
SEC Returns the secant of an angle (New in Excel 2013)
SECH Returns the hyperbolic secant of an angle (New in Excel 2013)
SIN Returns the Sine of a given angle
ASIN Returns the Arcsine of a number
SINH Returns the Hyperbolic Sine of a number
ASINH Returns the Inverse Hyperbolic Sine of a number
CSC Returns the cosecant of an angle (New in Excel 2013)
CSCH Returns the hyperbolic cosecant of an angle (New in Excel 2013)
TAN Returns the Tangent of a given angle
ATAN Returns the Arctangent of a given number
ATAN2 Returns the Arctangent of a given pair of x and y coordinates
TANH Returns the Hyperbolic Tangent of a given number
ATANH Returns the Inverse Hyperbolic Tangent of a given number
COT Returns the cotangent of an angle (New in Excel 2013)
COTH Returns the hyperbolic cotangent of an angle (New in Excel 2013)
ACOT Returns the arccotangent of a number (New in Excel 2013)
ACOTH Returns the hyperbolic arccotangent of a number (New in Excel 2013)


Exponentials & Logarithms
PI Returns the constant value of pi
SQRTPI Returns the square root of a supplied number multiplied by pi
DEGREES Converts Radians to Degrees
RADIANS Converts Degrees to Radians
COS Returns the Cosine of a given angle
ACOS Returns the Arccosine of a number
COSH Returns the hyperbolic cosine of a number
ACOSH Returns the inverse hyperbolic cosine of a number
SEC Returns the secant of an angle (New in Excel 2013)
SECH Returns the hyperbolic secant of an angle (New in Excel 2013)
SIN Returns the Sine of a given angle
ASIN Returns the Arcsine of a number
SINH Returns the Hyperbolic Sine of a number
ASINH Returns the Inverse Hyperbolic Sine of a number
CSC Returns the cosecant of an angle (New in Excel 2013)
CSCH Returns the hyperbolic cosecant of an angle (New in Excel 2013)
TAN Returns the Tangent of a given angle
ATAN Returns the Arctangent of a given number
ATAN2 Returns the Arctangent of a given pair of x and y coordinates
TANH Returns the Hyperbolic Tangent of a given number
ATANH Returns the Inverse Hyperbolic Tangent of a given number
COT Returns the cotangent of an angle (New in Excel 2013)
COTH Returns the hyperbolic cotangent of an angle (New in Excel 2013)
ACOT Returns the arccotangent of a number (New in Excel 2013)
ACOTH Returns the hyperbolic arccotangent of a number (New in Excel 2013)
EXP Returns e raised to a given power
LN Returns the natural logarithm of a given number
LOG Returns the logarithm of a given number, to a specified base
LOG10 Returns the base 10 logarithm of a given number


Factorials
FACT Returns the Factorial of a given number
FACTDOUBLE Returns the Double Factorial of a given number
MULTINOMIAL Returns the Multinomial of a given set of numbers


Miscellaneous
BASE Converts a number into a text representation, with the supplied base (New in Excel 2013)
DECIMAL Converts a text representation of a number in a specified base into a decimal number (New in Excel 2013)
COMBIN Returns the number of combinations for a given number of objects
COMBINA Returns the number of combinations (with repetitions) for a given number of items (New in Excel 2013)
ARABIC Converts a Roman numeral to an Arabic numeral (New in Excel 2013)
ROMAN Returns a text string depicting the roman numeral for a given number

แหล่งที่มา    Facebook : Excel Tricks

Shortcut ที่น่าสนใจใน Excel



F1 – Opens Excel Help
F2 – Moves the insertion point to the end of the contents of the active cell
F3 – Displays the Paste Name dialog box.
F4 – Repeats the last action
F5 – Displays the Go To dialog box
F6 – Moves to the next pane in a worksheet that has been split
F7 – Displays the spelling dialog box
F8 – Turns on/off extend mode
F9 – Calculates the workbook
F10 – Shows key tips, for navigating without a mouse

Ctrl+%        เพื่อแปลงเป็นหน่วย % (จริงๆ ต้องกด Ctrl+Shift+5 เพราะ Shift +5 คือตัว % แต่ถ้าต้องจำว่า Ctrl+Shift+5 จะไม่มีทางจำได้เลย)

Ctrl+^     ก็เพื่อแปลงเป็นเลข Scientific E ยกกำลัง (เพราะเป็นเครื่องหมายยกกำลัง)
Ctrl+$     ก็เพื่อแปลงเป็นรูปแบบสกุลเงิน
Ctrl+#     ก็เพื่อแปลงเป็นวันที่ (เพราะในโปรแกรม Access ก็ใส่วันที่ในเครื่องหมาย #)
Ctrl+@     ก็เพื่อแปลงเป็นเวลา เพราะ เครื่องหมาย@ ก็ดูเจาะจง คล้ายว่าจะระบุว่า ณ กี่โมง
Ctrl+;     ใส่วันที่ปัจจุบัน วัน/เดือน/ปี
Ctrl+:     ใส่เวลาปัจจุบัน เพราะเหมือนเครื่องหมายคั่น ชม:นาที
Ctrl+*     เลือก Range ทั้งหมด เพราะ * แทนความหมายว่าทั้งหมด ในภาษาฐานข้อมูล

แหล่งที่มา    Facebook : Excel Tricks

สูตรคำนวณหาว่าจะต้องจ่ายต่องวดเท่าใดด้วย PMT


PMT  เป็นฟังก์ชั่นที่ใช้ในการคำนวณหาจำนวนเงิน (เงินต้นและดอกเบี้ย) ที่จะต้องจ่ายชำระในแต่ละงวดเวลา

ไวยากรณ์
PMT(rate, nper, pv,fv, type)
  • rate : อัตราดอกเบี้ยต่องวด
  • nper " จำนวนงวด
  • pv : Present Value
  • fv type :  Future Value