貸借対照表 |
流動資産 |
<% = ConvIntToMoney(TozaShisan + TanaoroshiShisan + SonotaRyudoShisan, false, false) %> |
流動負債 |
<% = ConvIntToMoney(RyudoFusai, false, false) %> |
当座資産 |
<% = ConvIntToMoney(TozaShisan, false, false) %> |
固定負債 |
<% = ConvIntToMoney(KoteiFusai, false, false) %> |
棚卸資産 |
<% = ConvIntToMoney(TanaoroshiShisan, false, false) %> |
負債計 |
<% = ConvIntToMoney(RyudoFusai + KoteiFusai, false, false) %> |
その他 |
<% = ConvIntToMoney(SonotaRyudoShisan, false, false) %> |
資本 |
<% = ConvIntToMoney(JikoShihon, false, false) %> |
固定資産 |
<% = ConvIntToMoney(KoteiShisan, false, false) %> |
未処分利益 |
<% = ConvIntToMoney(TozaShisan + TanaoroshiShisan + SonotaRyudoShisan + KoteiShisan - JikoShihon - RyudoFusai - KoteiFusai , false, false) %> |
資産計 |
<% = ConvIntToMoney(SoShihon , false, false) %> |
負債・資本計 |
<% = ConvIntToMoney(SoShihon , false, false) %> |
|
損益計算書 |
売上高 |
<% = ConvIntToMoney(Uriage, false, false) %> |
売上原価 |
<% = ConvIntToMoney(UriageGenka , false, false) %> |
売上総利益 |
<% = ConvIntToMoney(Uriage - UriageGenka, false, false) %> |
販売・管理費 |
<% = ConvIntToMoney(HanbaiKanrihi, false, false) %> |
営業利益 |
<% = ConvIntToMoney(Uriage - UriageGenka - HanbaiKanrihi, false, false) %> |
営業外収益 |
<% = ConvIntToMoney(EigyogaiSyueki, false, false) %> |
営業外費用 |
<% = ConvIntToMoney(EigyogaiHiyo, false, false) %> |
経常利益 |
<% = ConvIntToMoney(KeijyoRieki, false, false) %> |
|
|
項目 |
計算式 |
目標値 |
評価 |
総資産経常利益率(%) |
|
= |
<% = ConvIntToMoney(KeijyoRieki, false, false) %> |
* 100 |
<% = ConvIntToMoney(SoShihon, false, false) %> |
|
= |
<% If SoShihon <> 0 Then Response.Write(Int(KeijyoRieki * 100 / SoShihon)) End If %> |
|
3.1 % |
<%
If SoShihon <> 0 Then
If Int(KeijyoRieki * 100 / SoShihon) >= 3.1 Then
Response.Write("OK")
Else
Response.Write("NG")
End If
End If%> |
自己資本経常利益率(%) |
|
= |
<% = ConvIntToMoney(KeijyoRieki, false, false) %> |
* 100 |
<% = ConvIntToMoney(JikoShihon, false, false) %> |
|
= |
<% If JikoShihon <> 0 Then Response.Write(Int(KeijyoRieki * 100 / JikoShihon)) %> |
|
13.5 % |
<%
If JikoShihon <> 0 Then
If Int(KeijyoRieki * 100 / JikoShihon) >= 13.5 Then
Response.Write("OK")
Else
Response.Write("NG")
End If
End If %> |
売上高売上総利益率(%) |
|
= |
<% = ConvIntToMoney(Uriage - UriageGenka, false, false) %> |
* 100 |
<% = ConvIntToMoney(Uriage, false, false) %> |
|
= |
<% If Uriage <> 0 Then Response.Write(Int((Uriage - UriageGenka) * 100 / Uriage)) End If %> |
|
28.4 % |
<%
If Uriage <> 0 Then
If Int((Uriage - UriageGenka) * 100 / Uriage) >= 28.4 Then
Response.Write("OK")
Else
Response.Write("NG")
End If
End If
%> |
売上高経常利益率(%) |
|
= |
<% = ConvIntToMoney(KeijyoRieki, false, false) %> |
* 100 |
<% = ConvIntToMoney(Uriage, false, false) %> |
|
= |
<% If Uriage <> 0 Then Response.Write(Int(KeijyoRieki * 100 / Uriage)) End If %> |
|
2.7 % |
<%
If Uriage <> 0 Then
If Int(KeijyoRieki * 100 / Uriage) >= 2.7 Then
Response.Write("OK")
Else
Response.Write("NG")
End If
End If %> |
総資本回転率(回) |
|
= |
<% = ConvIntToMoney(Uriage, false, false) %> |
<% = ConvIntToMoney(SoShihon, false, false) %> |
|
= |
<% If SoShihon <> 0 Then Response.Write(Int(Uriage * 100/ SoShihon) / 100 ) End If %> |
|
1.1 回 |
<%
If SoShihon <> 0 Then
If Int(Uriage * 100 / SoShihon) / 100 >= 1.1 Then
Response.Write("OK")
Else
Response.Write("NG")
End If
End If %> |
商品回転率(回) |
|
= |
<% = ConvIntToMoney(Uriage, false, false) %> |
<% = ConvIntToMoney(TanaoroshiShisan, false, false) %> |
|
= |
<% If TanaoroshiShisan <> 0 Then Response.Write(Int(Uriage * 100 / TanaoroshiShisan) / 100) End If %> |
|
7.6 回 |
<%
If TanaoroshiShisan <> 0 Then
If Int(Uriage * 100 / TanaoroshiShisan) / 100 >= 7.6 Then
Response.Write("OK")
Else
Response.Write("NG")
End If
End If %> |
|
目標値は中小企業の業種別指標より小売業平均を採用 |
|
|
|
|