[最も共有された! √] excel countif cell color without vba 313518-Excel countif cell color without vba

In this article, you will understand how in Excel you can count or sum a number of cells or row based on colors background without using VBA even If a data set has two or more colors The article is helpful only when a user color cells without using conditional format rule I am trying to count the number of cells in a row that contain a specific color without using VBA I also do not want to use the filter function to calculate the number of colored cells because I need the end result to be static In other words, I have one column that is counting the number of cells in a row, and a second column that is counting the same range of cells in that row with color How to count cells by interior color using VBA MrExcelcom debuted on MrExcelcom provides examples of Formulas, Functions and Visual Basic procedures for illustration only, without warranty either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose

Count Cells Based On The Cell Color In Google Sheets Spreadsheet Point

Count Cells Based On The Cell Color In Google Sheets Spreadsheet Point

Excel countif cell color without vba

Excel countif cell color without vba-Count by Color Using VBA in Microsoft Excel In this article, we will create a custom function to count the number of cells in the range having defined colors For this example, sample data consists of a range which has values ranging between 100 and 1000 Values in the cells are highlighted in different colorsClick in the orange cell in G4, and click Insert Function Select User Defined as the category, and then select CountCellsByColor as the function to use Click OK Highlight the range that contains all the colored cells Select the ColorCell, and then Click OK Repeat the process to Count the cells with a Green Background color

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

 Select a cell that has the color of interest and run this macro, and remember the number displayed Sub WhatColorIndex() MsgBox ActiveCellDisplayFormatInteriorColorIndex End Sub Replace the 14 in this macro with that number, and replace the D2Z100 with the cells that need counting, and the with the cell that should receive the count You can count the cells by the same function or say by the same condition which you are using to get Conditional formatting color No of counts where conditions are true VBA let me count/sum color cell Code but i dont have any ideas about copying formatting without condition from conditional formatting cells Might any of our sirsMethod #2 – Count Cells with Color By Creating Function using VBA Code;

In this tutorial, we will learn how to count cells by color and get the sum of colored cells either manually or by doing so across the entire workbook Figure 1 – How to count highlighted cells How to Count Colored Cells Using Filter and SUBTOTAL This method counts colored cells without VBA 350 0 To do thisNow let us discuss each of the methods in detail along with an example – #1 Using Filter Method with Sub Total Function As I said, we have multiple methods to count cells based on the color of the cell in excel This method uses the Filter & Subtotal functionThe VBA COUNT function is used to count the number of cells in your Worksheet that have values in them It is accessed using the WorksheetFunction method in VBA COUNT WorksheetFunction The WorksheetFunction object can be used to call most of the Excel functions that are available within the Insert Function dialog box in Excel The COUNT

One click to count, sum, and average colored cells in Excel With the excellent Count by Color feature of Kutools for Excel, you can quickly count, sum, and average cells by specified fill color or font color with only one click in ExcelBesides, this feature will also find out the max and min values of cells by the fill color or font color How to count the color codes As is, the matrix returns the fill color codes for each cell in the data set Using COUNTIF (), we can easily count the blue cells in each row To accomplish thisStep 4 Drag and paste the formula across cell G3G1001, and you'll see different numbers, which are nothing but the color codes associated with each color See the partial screenshot below Step 5 Now, we need to calculate what is the count of each color in the sheet For this, we will use the COUNTIF function

How To Count Or Sum Cells With Certain Color In Excel Automate Excel

How To Count Or Sum Cells With Certain Color In Excel Automate Excel

Ms Excel 03 Count The Number Of Cells With A Particular Font Color

Ms Excel 03 Count The Number Of Cells With A Particular Font Color

 The Excel Table allows you to filter and count cells with a specific background color Select any cell in the data set Press shortcut keys CTRL T to show the "Create Table" dialog box Enable the checkbox if your data has header names Click the "OK" button to convert cell range to an Excel TableThe second parameter is the cell from which you want to compare the color Note In the first VBA code, we have used RGB color codes to find the matching cells and sum the values You can find RGB codes of any color using following steps Step 1 Select the cell which contain the color you want to use Step 2 Right click and select 'Format Note If after applying the above mentioned VBA code you would need to color a few more cells manually, the sum and count of the colored cells won't get recalculated automatically to reflect the changes Please don't be angry with us, this is not a bug of the code ) In fact, it is the normal behavior of all Excel macros, VBA scripts and UserDefined Functions

How To Count And Sum Colored Cells In Excel Excelchat

How To Count And Sum Colored Cells In Excel Excelchat

Count Cells Based On The Cell Color In Google Sheets Spreadsheet Point

Count Cells Based On The Cell Color In Google Sheets Spreadsheet Point

 Count Cells by Color with VBA Code If you only want to count cells by one color in your range of cells, you can use a User Defined Function to achieve the result Just do the following steps #1 open your excel workbook and then click on "Visual Basic" command under DEVELOPER Tab, or just press "ALTF11" shortcut Re Only Count Cells with Specified Cell Color without using VBA How to install your new code Copy the Excel VBA code Select the workbook in which you want to store the Excel VBA code Press AltF11 to open the Visual Basic Editor Choose Insert > Module Edit > Paste the macro into the module that appeared Close the VBEditorMETHOD 1 Count by font color EXCEL =CountByFontColor (B5C11,E5) This function was created in VBA, as per the VBA code above, that counts and returns the number of cells that have a specific font color in the selected range (B5C11) The first part of the formula relates to the data range which you want to test for

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Count Individual Cells Within A Row By Their Fill Color In Excel Techrepublic

How To Count Individual Cells Within A Row By Their Fill Color In Excel Techrepublic

#mastersircreatebetter #MSCBSolutions #sumcolor #countifcolor #sumifColorHOW TO USE SUM BY COLORHOW TO USE SUMIF BY COLORHOW TO USE COUNTIF BY COLOREXCEL FOR To do that you need to create a custom function using VBA that works like a COUNTIF function and returns the number of cells for the same color You will follow the syntax =CountFunction(CountColor, CountRange) and use it like other regular functionsHere CountColor is the color for which you want to count the cellsIn Excel, we always format cells with filling color or font color to make the data more outstanding And sometimes, we need to count or sum the cells based on background color or font color That is to say, to sum or count the cells which have the same color Unfortunately, there is no direct way for us to deal with this task in Excel

How To Use The Countif Function Instead Of Vlookup Video Excel Campus

How To Use The Countif Function Instead Of Vlookup Video Excel Campus

Count Cells By Colour With Countif Stack Overflow

Count Cells By Colour With Countif Stack Overflow

A custom function, also called a User Defined Function, is a function that we write ourselves using VBA (Visual Basic for Applications) Here is how See Also 2 Separate Functions Here and Excel Sort by Color First open the Workbook in which you wish to count or sum cells by a fill color In the front sheet i want formula which should count if the cells font is in certain color say for ex, if the cell A1 in sheet3 is in red color it should be counted in sheet1 where i have applied the formula I need formula without VBA code Because when I use VBA code i'm not able to save the excel in normal Excel07 workbook format In the above two methods, you learned how to count colored cells without using VBA But, if you are fine with using VBA, this is the easiest of the three methods Using VBA, we would create a custom function, that would work like a COUNTIF function and return the count of cells with the specific background color

Excel 16 How To Count Color Cells Youtube

Excel 16 How To Count Color Cells Youtube

Trick Excel To Count Colored Cells Using Find Replace Auditexcel Co Za

Trick Excel To Count Colored Cells Using Find Replace Auditexcel Co Za

Note The COUNTIF function will not count cells based on cell background or font color However, Excel supports UserDefined Functions (UDFs) using the Microsoft Visual Basic for Applications (VBA) operations on cells based on background or font color Here is an example of how you can Count the number of cells with specific cell color by using Another Count Cell Color formula option using GetCell function but without helper cells 1 Copy background color from data to criteria header F6 with Red, G6 with Green 2 Create a range name by Select F7 >> Formulas >> Define Name >> Name CountcolorTo do that you need to create a custom function using VBA that works like a COUNTIF function and returns the number of cells for the same color You will follow the syntax =CountFunction(CountColor, CountRange) and use it like other regular functionsHere CountColor is the color for which you want to count the cells

1

1

How To Count And Sum Colored Cells In Excel Excelchat

How To Count And Sum Colored Cells In Excel Excelchat

The COUNTIF function returns the count of cells that do not a specific value Syntax = COUNTIF (range, "value") Range array Value text in quotes and numbers without quotes operator (not equal to) Wildcard characters for catching strings and perform functions on it There are three wildcard characters in ExcelHowever, using VBA we can create a function to count the number of cells with other criteria, such as cell color More information Using VBA, a User Defined Function (UDF) can be created and saved into an addin file so that it can be used in other workbooks and transferred to I am trying to count the number of cells in a range that has the same color as a reference cells, IF the corresponding cell in another range has the correct value criterion For example If (A1 < 350) and (B1 has the same color as a reference cell), then count 1 Loop over rows 1 to 15 It is essentially the same problem as the question posted

How To Count Colored Cells In Excel Step By Step Guide Video

How To Count Colored Cells In Excel Step By Step Guide Video

Sum Cells Based On Background Color

Sum Cells Based On Background Color

Now to count the total cells but not blank, use COUNTIF For that, go to any cell where you want to see the output and click on fx (a tab to insert functions in excel), as shown below This fx tab is available just below the Menu bar Once we click on it, we will get an Insert Function box, where it has all the inbuilt functions provided byThe code shown below will count the number of cells in a specified range that match the fill or font color of a Coloring the cells in the excel sheets gives the cells a pleasing appearance and your work is usually beautiful There are a number of steps to follow so as to color cells and also obtain a count of the colored cells 1 For us to be able to count colored cells in excel sheets, we need to first have the excel sheet with a green color

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

 When a matching color is found the cell value is analyzed and possibly counted in order to count all unique distinct values For example, the formula returns 6 in cell E4 because there are 6 numbers in red cells and they all are unique Cell E6 returns 4, numbers in green cells are 87, 84, 78, 75, 78 and 84 Number 84 and 78 have duplicates Without using macros and without using a helper column for status, you can see that the result of a count of red text cells is 3 1 Use a status column, conditional formatting and count the number of statuses 2 use an Excel table, filter by color and use Subtotal () to count 2 Answers2 No, it is not possible to determine the color of a cell without using VBA It is possible to create a function in VBA and then use excel itself to continue from there, but VBA will always be required Alternatively, don't rely

How To Count Colored Cells In Excel Without Vba Quora

How To Count Colored Cells In Excel Without Vba Quora

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Like this, with the help of UDF in VBA, we can count cells based on cell color #3 – Excel Count Colored Cells by Using FIND Method We can also count cells based on the FIND method as well Step 1 First, select the range of cells where we need to count cells VBA, COUNTIF, Exclude based on cell color Ask Question Asked 8 years, 6 months ago The change does nothing a debug statement gives a value of 1 The cells color will be either "null", "black, "red", Excel VBA read cell value from code 2Select the cell which contain the color you want to count Right click and select 'Format Cells' In the Format Cells dialog box go to 'Fill' tab and click on 'More Colors' That's all, in the 'Color' dialog box, you can view the RGB (Red, Green, Blue) codes of the color If you are look for a code to sum the cells based

How To Count Colored Cells In Excel Step By Step Guide Video

How To Count Colored Cells In Excel Step By Step Guide Video

1

1

Here we counting cells when the value in rng1 is greater than 100 and rng2 is not blank See also 50 examples of formula criteria Count cells with at least one character One problem with COUNTA is that it will also count empty strings returned by formulas (="") If you run into this problem, you can use a formula like thisThe named formula = GETCELL(63,INDIRECT("RC",0)) The 63 references the interior cell fill color The Indirect("RC",0) basically tells Excel to look in the same cell the formula is in, which works well for conditional formatting For some reason, I think this may mute the color codes to either one of the older version of Excel's limitations, soAs Steve Jezard mentioned, there is no inbuilt way of building a formula to return the number of colored cells So VBA to the rescue!

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count The Number Of Cells With Specific Cell Color By Using Vba Office Microsoft Docs

Count The Number Of Cells With Specific Cell Color By Using Vba Office Microsoft Docs

 The idea behind this post was to provide a way to count colored cells without using VBA This post provides a VBA solution The ColorIndex indicates where on the palette the color resides This isn't the same as the Color, so using this code may give you the same ColorIndex for colors that are actually differentExcel does not make it easy to count highlighted cells There is no builtin function that returns the color, and even if you use a userdefined function in VBA, it doesn't react to color changes The best you could do with VBA is to make your fun ColorFunction = vResult End Function And this one count cells with text and a specified fill color Sub CountColorValue () Dim numbers As Long, lastrow As Long Dim rng As Range, c As Range 'Find the last row lastrow = Range ("A" & RowsCount)End (xlUp)Row 'Set the range you want to search through

2 Methods To Count The Number Of Cells With Background Colors In Your Excel Data Recovery Blog

2 Methods To Count The Number Of Cells With Background Colors In Your Excel Data Recovery Blog

Counting Cells Based On Their Colour And Other Criteria Stack Overflow

Counting Cells Based On Their Colour And Other Criteria Stack Overflow

 Re Use Cell Color In Formula Without VBA I think I should comment that cell formulas (UDF or otherwise) that refer to color have an enherent flaw Changing a cell's color doesn't trigger calculation Even if its a volatile function One must manually calculate the sheet to insure that the results are accurate In a nutshell, this UDF compares the fill color of the current cell (B2B18) to the fill color in the criteria cell (G1) When those values match, the function adds the value in the current cellMETHOD 1 Count by cell color EXCEL =CountByCellColor (B5C13,E5) This function was created in VBA, as per the VBA code above, that counts the number of cells that have a specific color in the selected range (B5C13) The first part of the formula relates to the data range which you want to test for The second part of the formula specifies

How To Count Colored Cells In Excel Step By Step Guide Video

How To Count Colored Cells In Excel Step By Step Guide Video

Count By Color Using Vba In Microsoft Excel

Count By Color Using Vba In Microsoft Excel

Calculate COUNT, SUM, AVERAGE, MIN, MAX by cell background color or by font color When working with Excel tables, it is common to use different cell shading or font colors Highlighting cells brings attention and serves as a color code Eg you may choose to apply green background to showcase successful metrics, or assign red font to figuresIn this tutorial, learn how to count cells with a background color in it While Excel has some awesome formulas and functionalities, there is none to count t

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Cells By Colour Excel Vba Function Computergaga

Count Cells By Colour Excel Vba Function Computergaga

How To Count Colored Cells In Excel Step By Step Guide Video

How To Count Colored Cells In Excel Step By Step Guide Video

How To Count Or Sum Cells Based On The Font Colors In Excel

How To Count Or Sum Cells Based On The Font Colors In Excel

Count By Cell Color Using Excel And Vba Exceldome

Count By Cell Color Using Excel And Vba Exceldome

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

How To Count Colored Or Highlighted Cells In Excel Excelchat

How To Count Colored Or Highlighted Cells In Excel Excelchat

Excelsirji Vba Code To Count Color Cells With Conditional Formatting Excel Tutorials Cell Coding

Excelsirji Vba Code To Count Color Cells With Conditional Formatting Excel Tutorials Cell Coding

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Excel Countif Sumif On Colour No Vba Required Youtube

Excel Countif Sumif On Colour No Vba Required Youtube

In Excel Need To Count Cells That Are Colored From Conditional Formatting Then Create Report Of Specific Results Stack Overflow

In Excel Need To Count Cells That Are Colored From Conditional Formatting Then Create Report Of Specific Results Stack Overflow

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

Sum Cells Based On Background Color

Sum Cells Based On Background Color

Count Colored Cells In Excel Without Vba Youtube

Count Colored Cells In Excel Without Vba Youtube

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

Countif Function In Excel Formula Examples How To Use Countif

Countif Function In Excel Formula Examples How To Use Countif

How To Count And Sum Condtional Formatting Cells By Color In Excel 10 Microsoft Tech Community

How To Count And Sum Condtional Formatting Cells By Color In Excel 10 Microsoft Tech Community

Count Colored Cells In Excel Methods To Find Out Count Of Colored Cells

Count Colored Cells In Excel Methods To Find Out Count Of Colored Cells

Formulas Based On Cell Color Sumifs If Countif Etc Teachexcel Com

Formulas Based On Cell Color Sumifs If Countif Etc Teachexcel Com

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

How To Count Individual Cells Within A Row By Their Fill Color In Excel Techrepublic

How To Count Individual Cells Within A Row By Their Fill Color In Excel Techrepublic

Count Colored Cells In Excel Methods To Find Out Count Of Colored Cells

Count Colored Cells In Excel Methods To Find Out Count Of Colored Cells

How To Count Colored Cells In Excel Step By Step Guide Video

How To Count Colored Cells In Excel Step By Step Guide Video

How To Count Colored Cells In Excel Youtube

How To Count Colored Cells In Excel Youtube

Count Cells By Color In Google Sheets

Count Cells By Color In Google Sheets

Count Colored Cells In Excel Methods To Find Out Count Of Colored Cells

Count Colored Cells In Excel Methods To Find Out Count Of Colored Cells

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Count Colored Cells In Excel Without Vba Quora

How To Count Colored Cells In Excel Without Vba Quora

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

Count Colored Cells In Excel Without Vba Youtube

Count Colored Cells In Excel Without Vba Youtube

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

How To Count And Sum Colored Cells In Excel Excelchat

How To Count And Sum Colored Cells In Excel Excelchat

1

1

Count Cells Based On Background Color

Count Cells Based On Background Color

How To Convert Number To Words Without Vba

How To Convert Number To Words Without Vba

How To Count Cells By Colors With Conditional Formatting In Excel How To Count Colored Cells Youtube

How To Count Cells By Colors With Conditional Formatting In Excel How To Count Colored Cells Youtube

Count By Color Using Vba In Microsoft Excel

Count By Color Using Vba In Microsoft Excel

Count Colored Cells In Excel 16 Without Vba

Count Colored Cells In Excel 16 Without Vba

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

Use A Dynamic Range In Excel With Countif And Indirect

Use A Dynamic Range In Excel With Countif And Indirect

How To Count Colored Cells In Excel Without Vba Quora

How To Count Colored Cells In Excel Without Vba Quora

Excel Formula Count Cells Not Equal To Exceljet

Excel Formula Count Cells Not Equal To Exceljet

How To Sum And Count Cells By Color In Excel Dollar Excel

How To Sum And Count Cells By Color In Excel Dollar Excel

How To Count And Sum Colored Cells In Excel Excelchat

How To Count And Sum Colored Cells In Excel Excelchat

Count By Font Color Using Excel And Vba Exceldome

Count By Font Color Using Excel And Vba Exceldome

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

How To Count Or Sum Cells Based On The Font Colors In Excel

How To Count Or Sum Cells Based On The Font Colors In Excel

How To Count And Sum Colored Cells In Excel Excelchat

How To Count And Sum Colored Cells In Excel Excelchat

How To Count By Color And Sum By Color In Excel 16 19 And 13

How To Count By Color And Sum By Color In Excel 16 19 And 13

Excel Countif Sumif On Colour No Vba Required Youtube

Excel Countif Sumif On Colour No Vba Required Youtube

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Sum And Count Cells By Color In Excel Dollar Excel

How To Sum And Count Cells By Color In Excel Dollar Excel

Count Cells Based On Background Color

Count Cells Based On Background Color

How To Count Colored Cells In Excel Without Vba Quora

How To Count Colored Cells In Excel Without Vba Quora

Count The Number Of Cells With Specific Cell Color By Using Vba Office Microsoft Docs

Count The Number Of Cells With Specific Cell Color By Using Vba Office Microsoft Docs

Sum By Color When Colors Are Set By Conditional Formatting Microsoft Tech Community

Sum By Color When Colors Are Set By Conditional Formatting Microsoft Tech Community

Excel Countif And Countifs Formulas Explained My Online Training Hub

Excel Countif And Countifs Formulas Explained My Online Training Hub

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Excel Cells With Multiple Colors No Vba Excelnumber

Count Excel Cells With Multiple Colors No Vba Excelnumber

How To Count And Sum Colored Cells In Excel Excelchat

How To Count And Sum Colored Cells In Excel Excelchat

Excel Countif Sumif On Colour No Vba Required Youtube

Excel Countif Sumif On Colour No Vba Required Youtube

How To Count And Sum Cells Based On Background Color In Excel

How To Count And Sum Cells Based On Background Color In Excel

How To Count Cells With Specific Text In Excel Magoosh Excel Blog

How To Count Cells With Specific Text In Excel Magoosh Excel Blog

Countif By Cells Background Color In Excel Youtube

Countif By Cells Background Color In Excel Youtube

Count The Number Of Cells With Specific Cell Color By Using Vba Office Microsoft Docs

Count The Number Of Cells With Specific Cell Color By Using Vba Office Microsoft Docs

Excel Countif Example How To Implement Countif Examples

Excel Countif Example How To Implement Countif Examples

Using Countif With Colors Microsoft Excel

Using Countif With Colors Microsoft Excel

How To Count Colored Or Highlighted Cells In Excel Excelchat

How To Count Colored Or Highlighted Cells In Excel Excelchat

Count Cells By Color In Google Sheets

Count Cells By Color In Google Sheets

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

Count Colored Cells In Excel Top 3 Methods Step By Step Guide

3

3

How To Count By Color And Sum By Color In Excel 16 19 And 13

How To Count By Color And Sum By Color In Excel 16 19 And 13

Incoming Term: excel countif cell color without vba,

コメント

このブログの人気の投稿

√完了しました! カタカナ 歌詞 203920-ダイナマイト カタカナ 歌詞

[最も欲しかった] ポケモン 自由帳 158348-ポケモン 自由帳 ヨドバシ

最高のコレクション ミスターバーグ メニュー 180986-ミスターバーグ 総社市 メニュー