Showing posts with label First Term. Show all posts
Showing posts with label First Term. Show all posts

Friday, 12 December 2014

Excel III: Customizable laptop app

Hello for the last time in this term. The last excel practice we've made consists on an application to make a laptop with the components you choose, which gives you a budget and the possibility to adjust a price limit.
The first sheet is a front page with linking buttons to the rest of the sheets, as always.

The components' sheet is a simple one but it takes some time and it's such a tedious work because you have to look for information of laptops' components and their prices. The only remarkable thing here is the format of the price cells, in euros, and the linking buttons to the other sheets.

The invoice sheet is very complex. For the price of each component I set a "VLOOKUP" function, which I explained in the post about the automatic invoice, with this code: =BUSCARV(C4;Componentes!B2:C13;2;FALSO). To make a dropdown list for each component I used a data format called data validation, as a list, taking the data from the respective chart from the components' sheet. For the final price I added all the components' prices and then I added the 21% of taxes as you can see in the image. And as alert I added an 'IF' function which warns you if the final price exceeds your personal price limit, and which is =SI(C14=0;"";SI(D17>C14;"CUIDADO, ¡SUPERADO!";"NO SUPERADO AÚN"))
To make it become red I added a conditional format only applied to cells with the specific text that is shown when the personal limit price is exceeded. But to alert you in a greater way I also added an error message through another data validation in the price limit cell. Here you have to make possible only a lower final price amount than the price limit amount, as the image below shows, and set your own error message.



I hope it was useful, you can always ask me anything in case of doubt. Have a great Christmas time and enjoy yourselves on this holydays!

Friday, 5 December 2014

Excel II: Ecuation solver

Hello again. The second big project we've made with excel is an ecuation solver which can solve simple ecuations of first degree and of second degree quickly.

In the first sheet there must be a front sheet that links to the rest of the sheets: 1st degree ecuation, representation of the 1st degree ecuation, 2nd degree ecuation and representation of the 2nd degree ecuation. You can do it with a macro or with a hyperlink as the image shows.

For the first degree ecuation I just had to write the ecuation leaving gaps where each term had to be written and leave a solution gap where I wrote the formula to solve the ecuation. I also made it notify if there were terms left. So my function was =SI(D7=0;SI(F7=0;"¡Faltan coeficientes en la ecuación!";"¡Faltan coeficientes en la ecuación!");(H7-F7)/D7). I solved the ecuation leaving the x alone.
For its representation I wrote the formula as in the previous sheet and gave several values for the x in a chart and, to obtain the respective value of y, I just made a formula replacing x by the value given respectively: =SI(C10=" ";" ";$D$5*C10+$F$5-$H$5). To add the graphic you insert a lines graphic and set the data as the image shows. I also added linking buttons as in all the sheets.

And for the second degree ecuation it's the same but with a different formula: =SI(D7=0;SI(F7=0;SI(H7=0;"¡Faltan coeficientes en la ecuación!";"Ecuación incompatible");"Ecuación de primer grado");SI((F7^2-4*D7*H7)>=0;((-F7+(RAIZ(F7^2-4*D7*H7)))/(2*D7));"Sin resultados reales")) for the first result and: =SI(D7=0;SI(F7=0;SI(H7=0;"¡Faltan coeficientes en la ecuación!";"Ecuación incompatible");"Sólo hay un resultado");SI((F7^2-4*D7*H7)>=0;((-F7-(RAIZ(F7^2-4*D7*H7)))/(2*D7));"Sin resultados reales")) for the second result. 

To make its representation it's the same, replace the x by different values to obtain the y, and create the graphic with that values. The formula I used was: =SI(C10="";"";$D$5*(C10^2)+$F$5*C10+$H$5)

I made erase and print buttons with macros in each sheet so, if you want to know how I did them, visit my previous post. I also added linking buttons in each sheet to link to the rest of the sheets.

I hope it was useful and if you've any questions, please ask me. See you.

Friday, 28 November 2014

Excel: automatic invoice

This long period of time I haven't posted anything because we've been making some Excel practices (and I've also been to New York!!!). At first we remembered how to make some simple functions as multiplying, dividing, adding, subtracting and other more difficult functions as the average, inserting graphics, the "DGET", "DMAX", "DMIN", "DCOUNT" "DCOUNTA" or "IF" functions, the "IF" function within other "IF" functions and so. We also practiced format functions (percentages, money symbols, colour of the field depending on something...).

The first important project we've made was an electronic invoice with a record of products, clients and the charged amounts depending on what they buy.

The first thing I had to have in this excel book was a front or home page where you include the company data and some buttons to link to the other pages. You can do that with a macro or adding a hyperlink by right clicking on the button you've drawn or inserted, choosing "Hyperlink", "place from this folder" and the sheet you want to make that button access.

Then it was time to fill in the data within the clients' sheet. You have to fill in the name, surname, adress, phone number and e-mail adress manually but then you can add a special format to set their personal codes with three digits, for instance, as I did in my "B" column. I also set a "DGET" function in my "C" column so that it shows the three first letters of their surname (=EXTRAE(D4;1;3)). Then I added a conditional format on my "F" column to green colour if the client is a man (M) or yellow color if it's a woman (F) by setting that options in a new rule on "Condicional Format".

The easiest sheet is the products' catalog one. You just have to fill in the products' code, its name and its price. I also added the price with taxes. The code to do this consists just in multiplying the price by the percentage of the tax and add it to the price. For the code you can do the same as in the clients' sheet, making it have three digits automatically by adding zeros. As in the rest of the sheets I added buttons to access the other sheets.

The last sheet is the bill. At first you have to know the client who's buying so with filling the client code, his or her data has to be showed. This is possible with the function =BUSCARV(C5;Clientes!B4:L17;6;FALSO) in the case of my bill, just changing the number of column, the third factor of the function. The first one is the box in which the code is writen and the second one the chart in which the data must be searched. With the products it's the same but with another chart and another code box (=BUSCARV(C10;Catálogo!B4:F22;2;FALSO)). Then the tax and the discount are added.

To erase the data you just have to make a macro as the image shows, and erase all the fields you want (the code boxes and the number of products) and stop the recording of the macro. Then you add the macro to a button. To print it's just the same but pressing the print button while recording the macro.

I hope it was useful and if you have any question, just let me know. See you soon.

Wednesday, 15 October 2014

Internet of things

As in the project about the knowledge society I didn't expand much the concept of Internet of things, I'm going to devote this post to it.


The Internet of things (IoT) is the term we use to call the fact of having our gadgets and the things that surround us digitally controlled and interconnected through the net. This includes alarm systems, cell phones, printers, washing machines, coffee makers, blinds, headphones, lamps, wearable gadgets, machines components... And almost anything else you can imagine, so it's a huge network of connected devices and also people, which allows relationships betwen both groups.

It has the potential to impact how we live and work because of the great advances of the new technologies: broadband Internet availability, easy connection, new very capable devices, a great smart phone penetration, the decreasing technology costs... And in a short period of time we might be able to say that anything we want to be connected and controlled can be connected and controlled, and we'll live in smart cities and smart houses which interact with us.

For example we can change the temperature or the illumination of our house with a smartphone depending in our feelings, blinds can come down automatically when it's very sunny or at night; the trafic lights can control themselves depending on the traffic and the people waiting to cross the road...

So anything can be done automatically with IoT so life will be a lot easier as this is developped, locations will be known easily, economy would be more controlled, education will develop, what's turned on or off will be known, anything will be close to everyone even if it's on the other side of the world... And we should make this possible.

I wish you agree and you liked, I obtained some of this information at this webpage: http://www.forbes.com/sites/jacobmorgan/2014/05/13/simple-explanation-internet-things-that-anyone-can-understand/

See you!

Wednesday, 8 October 2014

Knowledge Society

Hi blog readers. The first project we had to do this course was a Word document about the knowledge society. In it we talk about what the concept of knowledge society involves, its characteristics and its background. This society is a progression from the information and communication society that also allows the management of the information skillfully.
I also speak about the areas in which it is important; our personal development and the social factor that makes us being interconnected and learn dynamically.
Other important factors are the problems that it may suppose with the use of technological devices (the Digital Divide, the cybercrime and other security problems) and I have to tell you to be careful with what you post or upload on the Internet and to control the time you spend on the net and valore if you are really taking advantage of the resources and the time you have in a good way.

Sociedad del conocimiento from Carmen Bueno Iglesias

I wish it was interesting and you liked, you can also watch the document here. Thank you for watching.

See you at the next post.

Tuesday, 23 September 2014

Welcome again!

Hello everybody, how has your summer been? We've come back from holidays and we're going to start a new Computing course. This course the subjet isn't called Computing but IT (TIC in spanish), and now we don't have the bilingüal classes option so we take them on spanish, but I'll try to continue writting in English.

This summer I've made some interesting things; I've been to a 3D computer design workshop using 3ds Max and I've made a 3D Pocahontas, I've recieved a graphics tablet to draw and design on the computer and I've been drawing with it, I've made a poster for a contest in my village through Corel Painter X3 and I've won...
But now the new course is starting and we're going to do a lot of interesting things too.

I'll be reporting you about our learning during the course with several posts, as I used to do last course, so I wish you like my blog and my new posts, see you in the next one.

Wednesday, 25 December 2013

DJ Tenorio Theatre Brochure

Hi everyone, and HAPPY CHRISTMAS!!! I wish you're having a very enjoyable and relaxing holiday and Christmas day.

Today I'm showing you the last thing we did before holidays, that last days of hard working at high school. I's a brochure for the play that is to be performed in our high school soon. If you're interested you can read it and you can attend it.

Have a nice Christmas Day :)



Saturday, 7 December 2013

Computing Memories

Hi! I greet you for the fourth time to show you the third project we've made at computing. This time it's a presentation about Memories in computing (RAM & ROM), in which my partner Paula and me have explained a bit them and some types of them. We hope you like it.

I leave here the presentation and the link to my partner's blog, to visit her too.
Have a nice day, and a nice week!


--
You can also watch it here.

Saturday, 9 November 2013

Computers' History's Timeline

Hello again! This time I show you the second project we've made at computing. It's a timeline about the most important events that have been happening through the history of computers, starting at Mark 1 (first electromechanical computer), and ending on the likely future, going over electronic vacuum tubes, ENIAC, EDSAC, EDVAC, LEO, UNIVAC, Apple II or Apple ][, IBM PC and first Macintosh (computers that had something new and different from previous computers), and the different ages of computers' history and their characteristics.I hope you like it!


You can also see it here.

Wednesday, 23 October 2013

Information Technologies

This is my first project at computing. In this Word I speak about IT's. The headlands of this theme are:
  • Definition of IT, main characteristics, advantages and disadvantages and evolution
  • Communication with IT's and their effect in society
  • Application in the professional field (commerce, education, health service, banking, administration and govern and industry)
  • Communication tools; browsers and searchers
  • Communication as way of generating knowledge
  • Responsible use of IT's' tools
  • Copyright
  • Data protection act
  • Actual situation and future
  • Bibliography and vocabulary

Tuesday, 22 October 2013

Hello!

Hi, my name is Carmen, and... WELCOME TO MY BLOG!


I'm studying at Juanelo Turriano High School, at 4th of ESO, and this year I've started a new subject called 'Computing'.

In this site you'll be able to see our work in this subject and I will be posting our projects or experiences as the school year happens.
I hope you like it, you enjoy it and you learn with my work.
Have a nice day and see you at the next post!