Tagalog?

electronictokwa

Board Regular
Joined
Oct 25, 2011
Messages
122
May pinoy ba dito or marunong mag tagalog? Kelangan ko ng tulong para sa ginagawa kong configurator eh:)
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Uy meron pala hehe! Ayun di pa kasi sure kung itutuloy namin eh. Pero kung sakali post ko dito. May nagawa na akong isang quick reference guide para sa team ko. Bale clickable options sa main sheet tapos mag auto populate lang yung result depende sa na click na line. Eto yung code:


Const iTocCOl As Integer = 2

Const NVIDIA_Quadro_2000Row As Integer = 9
Const NVIDIA_NVS_295Row As Integer = 4
Const NVIDIA_NVS_450Row As Integer = 5
Const NVIDIA_Quadro_600Row As Integer = 7
Const NVIDIA_Quadro_FX_380Row As Integer = 20

Private Sub Clear_Click()
Range("D:L").Clear
End Sub

'Private Sub Worksheet_Activate()
'Columns("D:L").Clear
'End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
Dim iRow As Integer
iRow = ActiveCell.Row
If Not ActiveCell.Column = iTocCOl Then
Exit Sub
End If

Select Case iRow
Case NVIDIA_Quadro_2000Row
Columns("D:L").Clear
Application.GoTo reference:="Quadro_2000"
GoTo Paste
Case NVIDIA_Quadro_600Row
Columns("D:L").Clear
Application.GoTo reference:="Quadro_600"
GoTo Paste
Case NVIDIA_NVS_450Row
Columns("D:L").Clear
Application.GoTo reference:="NVS_450"
GoTo Paste
Case NVIDIA_NVS_295Row
Columns("D:L").Clear
Application.GoTo reference:="NVS_295"
GoTo Paste
Case NVIDIA_Quadro_FX_380Row
Columns("D:L").Clear
Application.GoTo reference:="FX_380"
GoTo Paste
Case Else
Exit Sub
End Select
Paste:
Selection.Copy
Range("D2").Select
ActiveCell.PasteSpecial xlPasteAll
Columns(iTocCOl).Interior.ColorIndex = xlNone
Range("A1").Select
Application.CutCopyMode = False
Cells(iRow, iTocCOl).Interior.ColorIndex = 36

End Sub

Draft palang to. Di pa final kung anu mga ilalagay sa result saka yung criteria. Yung isang project ko kasi system configurator; mobo+CPU+RAM., etc. Medyo matagal lang pag gather ng data.
 
Upvote 0
Ugh! Sakit sa ulo yan ah. So bale ang gusto mo may button sa main sheet at pag click mo mag auto-populate yung sagot? Pwede bang ibigay mo kung naong exactly kailangan na lalabas like formulas or something? Baka makatulong ako.


netchie
 
Upvote 0
Ugh! Sakit sa ulo yan ah. So bale ang gusto mo may button sa main sheet at pag click mo mag auto-populate yung sagot? Pwede bang ibigay mo kung naong exactly kailangan na lalabas like formulas or something? Baka makatulong ako.


netchie

Okay naayos ko na. Nasa same sheet lang yung named range kasi di nya kaya kunin sa ibang sheet.
 
Upvote 0
I'm glad ok na nga :)

At mabuti naman at paminsan minsan may nababasa akong Tagalog dito hehehe.
 
Upvote 0
Sino ba marunong sa ino ng VBA? May problema ako di ko maayos. Paki email naman ako please? kumot4«at»<SUP>1</SUP>hotmail.com. Di ko kasi pwedeng i post dito yung table eh.


<HR>

<SUP>1 </SUP>Swap out the "«at»" with the "@" symbol.
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,216,225
Messages
6,129,599
Members
449,520
Latest member
TBFrieds

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top